結果
問題 | No.683 Two Operations No.3 |
ユーザー | 💕💖💞 |
提出日時 | 2018-06-15 00:56:59 |
言語 | Kotlin (1.9.23) |
結果 |
RE
|
実行時間 | - |
コード長 | 442 bytes |
コンパイル時間 | 12,172 ms |
コンパイル使用メモリ | 438,372 KB |
実行使用メモリ | 53,040 KB |
最終ジャッジ日時 | 2024-11-20 16:22:43 |
合計ジャッジ時間 | 18,762 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 316 ms
51,576 KB |
testcase_01 | AC | 314 ms
51,496 KB |
testcase_02 | AC | 315 ms
51,576 KB |
testcase_03 | AC | 319 ms
51,800 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 322 ms
51,572 KB |
testcase_07 | AC | 320 ms
51,704 KB |
testcase_08 | RE | - |
testcase_09 | AC | 318 ms
51,800 KB |
testcase_10 | AC | 319 ms
51,724 KB |
testcase_11 | AC | 316 ms
51,548 KB |
testcase_12 | RE | - |
testcase_13 | AC | 317 ms
51,700 KB |
testcase_14 | AC | 318 ms
51,568 KB |
testcase_15 | RE | - |
コンパイルメッセージ
Main.kt:12:10: warning: parameter 'args' is never used fun main(args:Array<String>) { ^
ソースコード
fun grad(a:Long, b:Long):Long { return when { a == 0L && b == 0L -> 1L a == 0L -> 1L a%2 == 1L && b%2 == 1L -> 0L a%2 == 0L && b%2 == 0L -> grad(a-1, b/2) or grad(a/2, b-1) a%2 == 1L -> grad(a-1, b/2) b%2 == 1L -> grad(a/2, b-1) else -> 0L } } fun main(args:Array<String>) { val (a, b) = readLine()!!.split(" ").map(String::toLong) when(grad(a, b)) { 1L -> "Yes" else -> "No" }.run(::println) }