結果

問題 No.969 じゃんけん
ユーザー rhincodon66rhincodon66
提出日時 2020-01-17 21:24:28
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 10,781 ms
コンパイル使用メモリ 414,712 KB
実行使用メモリ 52,020 KB
最終ジャッジ日時 2023-09-08 01:26:10
合計ジャッジ時間 13,200 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 265 ms
50,116 KB
testcase_01 AC 264 ms
49,976 KB
testcase_02 AC 269 ms
52,020 KB
testcase_03 AC 269 ms
49,840 KB
testcase_04 AC 257 ms
49,952 KB
testcase_05 AC 262 ms
50,068 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