結果

問題 No.969 じゃんけん
ユーザー バカらっくバカらっく
提出日時 2022-02-03 13:12:33
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 12,655 ms
コンパイル使用メモリ 429,708 KB
実行使用メモリ 53,984 KB
最終ジャッジ日時 2024-06-11 09:52:37
合計ジャッジ時間 13,591 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
53,832 KB
testcase_01 AC 320 ms
53,836 KB
testcase_02 AC 324 ms
53,936 KB
testcase_03 AC 321 ms
53,852 KB
testcase_04 AC 323 ms
53,984 KB
testcase_05 AC 325 ms
53,896 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val tmp = listOf(0,2,5)
    val x = readLine()!!.toInt()
    println(if(tmp.any { it*2 == x }) "Yes" else "No")
}
0