結果

問題 No.683 Two Operations No.3
ユーザー 826814741_6826814741_6
提出日時 2018-12-31 12:01:13
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 472 bytes
コンパイル時間 10,039 ms
コンパイル使用メモリ 437,660 KB
実行使用メモリ 57,100 KB
最終ジャッジ日時 2024-11-20 17:18:30
合計ジャッジ時間 15,430 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 273 ms
56,860 KB
testcase_02 WA -
testcase_03 AC 281 ms
56,864 KB
testcase_04 AC 285 ms
56,956 KB
testcase_05 AC 273 ms
56,960 KB
testcase_06 AC 286 ms
56,848 KB
testcase_07 WA -
testcase_08 AC 288 ms
56,856 KB
testcase_09 AC 287 ms
56,844 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 268 ms
57,024 KB
testcase_13 AC 275 ms
56,876 KB
testcase_14 WA -
testcase_15 AC 279 ms
56,768 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 and 2L==1L&&b and 2L==1L -> false
            a and 2L==0L&&b and 2L==1L -> f(a shr 1,b.dec())
            a and 2L==1L&&b and 2L==0L -> f(a.dec(),b shr 1)
            else -> f(a shr 1,b.dec()) || f(a.dec(),b shr 1)
        }

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