結果

問題 No.969 じゃんけん
ユーザー rhincodon66rhincodon66
提出日時 2020-01-17 21:24:28
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 11,368 ms
コンパイル使用メモリ 420,360 KB
実行使用メモリ 49,764 KB
最終ジャッジ日時 2024-06-25 18:30:47
合計ジャッジ時間 14,190 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
49,704 KB
testcase_01 AC 292 ms
49,520 KB
testcase_02 AC 293 ms
49,724 KB
testcase_03 AC 292 ms
49,444 KB
testcase_04 AC 293 ms
49,764 KB
testcase_05 AC 294 ms
49,676 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args:Array<String>){
         ^

ソースコード

diff #

import java.util.*

fun main(args:Array<String>){
    val n = readLine()!!.toInt()
    println(if(n == 0 || n == 4 || n == 10) "Yes" else "No")
}
0