Submission #3223092


Source Code Expand

fun main(args: Array<String>) {
	val (a, b) = readLine()!!.split(" ").map{ it.toInt() }
	val ans = if (a * b % 2 != 0) "Odd" else "Even"
	println(ans)
}

Submission Info

Submission Time
Task A - Product
User ToshiroYanagi
Language Kotlin (1.0.0)
Score 100
Code Size 158 Byte
Status AC
Exec Time 235 ms
Memory 37776 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 2
AC × 7
Set Name Test Cases
Sample 0_000.txt, 0_001.txt
All 0_000.txt, 0_001.txt, 1_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt
Case Name Status Exec Time Memory
0_000.txt AC 235 ms 34332 KB
0_001.txt AC 231 ms 37776 KB
1_002.txt AC 232 ms 35828 KB
1_003.txt AC 232 ms 34116 KB
1_004.txt AC 230 ms 35948 KB
1_005.txt AC 234 ms 35804 KB
1_006.txt AC 233 ms 35784 KB