結果

問題 No.816 Beautiful tuples
ユーザー 💕💖💞💕💖💞
提出日時 2019-05-06 14:43:39
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 11,300 ms
コンパイル使用メモリ 435,120 KB
実行使用メモリ 60,388 KB
最終ジャッジ日時 2024-11-20 18:16:34
合計ジャッジ時間 17,245 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 332 ms
55,276 KB
testcase_02 AC 328 ms
55,116 KB
testcase_03 WA -
testcase_04 AC 329 ms
55,268 KB
testcase_05 AC 327 ms
54,796 KB
testcase_06 AC 333 ms
54,936 KB
testcase_07 AC 323 ms
55,024 KB
testcase_08 AC 332 ms
54,964 KB
testcase_09 AC 326 ms
54,908 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 326 ms
54,884 KB
testcase_13 AC 328 ms
54,956 KB
testcase_14 AC 332 ms
55,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
    val (A, B) = readLine()!!.split(" ").map { it.toInt() }.sorted()

    when {
        3*A == 2*B -> A/2
        2*A == B -> B*3
        3*A == B -> 2*A
        else -> -1
    }.let { println(it) }
}
0