結果

問題 No.683 Two Operations No.3
ユーザー 826814741_6826814741_6
提出日時 2018-12-31 12:06:17
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 12,528 ms
コンパイル使用メモリ 432,020 KB
実行使用メモリ 57,100 KB
最終ジャッジ日時 2024-11-20 17:18:54
合計ジャッジ時間 17,568 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
57,012 KB
testcase_01 AC 310 ms
56,936 KB
testcase_02 AC 315 ms
56,868 KB
testcase_03 AC 312 ms
56,944 KB
testcase_04 AC 314 ms
56,832 KB
testcase_05 AC 311 ms
57,100 KB
testcase_06 AC 313 ms
56,884 KB
testcase_07 AC 315 ms
56,840 KB
testcase_08 AC 313 ms
56,832 KB
testcase_09 AC 316 ms
56,892 KB
testcase_10 AC 314 ms
56,936 KB
testcase_11 AC 310 ms
56,940 KB
testcase_12 AC 313 ms
56,860 KB
testcase_13 AC 314 ms
56,948 KB
testcase_14 AC 314 ms
56,840 KB
testcase_15 AC 316 ms
56,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:12:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

fun f (a: Long, b: Long): Boolean =
    if (a==0L || b==0L)
        true
    else
        when {
            a%2L==1L&&b%2L==1L -> false
            a%2L==0L&&b%2L==1L -> f(a/2L,b.dec())
            a%2L==1L&&b%2L==0L -> f(a.dec(),b/2L)
            else -> f(a/2L,b.dec()) || f(a.dec(),b/2L)
        }

fun main(args: Array<String>){
    val (a,b) = readLine()!!.split(' ').map(String::toLong)
    println(if (f(a,b)) "Yes" else "No")
}
0