結果

問題 No.816 Beautiful tuples
ユーザー 💕💖💞💕💖💞
提出日時 2019-05-06 14:45:06
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 318 ms / 1,500 ms
コード長 233 bytes
コンパイル時間 10,469 ms
コンパイル使用メモリ 434,928 KB
実行使用メモリ 60,388 KB
最終ジャッジ日時 2024-11-20 18:17:21
合計ジャッジ時間 15,993 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
60,352 KB
testcase_01 AC 298 ms
60,352 KB
testcase_02 AC 303 ms
60,272 KB
testcase_03 AC 304 ms
60,268 KB
testcase_04 AC 302 ms
60,324 KB
testcase_05 AC 303 ms
60,328 KB
testcase_06 AC 307 ms
60,348 KB
testcase_07 AC 299 ms
60,340 KB
testcase_08 AC 300 ms
60,288 KB
testcase_09 AC 318 ms
60,256 KB
testcase_10 AC 308 ms
60,268 KB
testcase_11 AC 295 ms
60,244 KB
testcase_12 AC 306 ms
60,284 KB
testcase_13 AC 310 ms
60,388 KB
testcase_14 AC 310 ms
60,252 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 -> A*3
        3*A == B -> 2*A
        else -> -1
    }.let { println(it) }
}
0