結果

問題 No.816 Beautiful tuples
ユーザー maimai
提出日時 2019-04-25 23:32:49
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 341 ms / 1,500 ms
コード長 331 bytes
コンパイル時間 10,044 ms
コンパイル使用メモリ 426,488 KB
実行使用メモリ 55,360 KB
最終ジャッジ日時 2024-11-20 18:05:23
合計ジャッジ時間 16,091 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 306 ms
55,264 KB
testcase_01 AC 321 ms
55,244 KB
testcase_02 AC 338 ms
55,172 KB
testcase_03 AC 329 ms
55,176 KB
testcase_04 AC 335 ms
55,172 KB
testcase_05 AC 323 ms
55,276 KB
testcase_06 AC 315 ms
55,180 KB
testcase_07 AC 322 ms
55,200 KB
testcase_08 AC 334 ms
55,332 KB
testcase_09 AC 317 ms
55,360 KB
testcase_10 AC 340 ms
55,280 KB
testcase_11 AC 329 ms
55,356 KB
testcase_12 AC 330 ms
55,176 KB
testcase_13 AC 341 ms
55,184 KB
testcase_14 AC 339 ms
55,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

val sc = Scanner(System.`in`)

fun main(){
    var a = sc.nextInt()
    var b = sc.nextInt()
    
    if (a > b)
        a = b.also{ b = a }
    
    if (a*2 == b)
        println(a*3)
    else if (a*3 == b)
        println(a*2)
    else if (a*3 == b*2)
        println(a/2)
    else
        println(-1)
}
0