結果

問題 No.524 コインゲーム
ユーザー 💕💖💞💕💖💞
提出日時 2017-09-10 05:40:12
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 298 ms / 1,000 ms
コード長 145 bytes
コンパイル時間 10,852 ms
コンパイル使用メモリ 423,116 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-11-20 12:01:46
合計ジャッジ時間 23,126 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
54,148 KB
testcase_01 AC 295 ms
54,176 KB
testcase_02 AC 295 ms
54,104 KB
testcase_03 AC 288 ms
53,992 KB
testcase_04 AC 293 ms
54,036 KB
testcase_05 AC 293 ms
53,984 KB
testcase_06 AC 289 ms
53,852 KB
testcase_07 AC 293 ms
53,960 KB
testcase_08 AC 297 ms
54,008 KB
testcase_09 AC 298 ms
54,124 KB
testcase_10 AC 285 ms
54,096 KB
testcase_11 AC 287 ms
54,064 KB
testcase_12 AC 291 ms
54,020 KB
testcase_13 AC 294 ms
54,048 KB
testcase_14 AC 293 ms
54,112 KB
testcase_15 AC 295 ms
54,088 KB
testcase_16 AC 295 ms
54,156 KB
testcase_17 AC 296 ms
53,988 KB
testcase_18 AC 296 ms
54,060 KB
testcase_19 AC 297 ms
54,032 KB
testcase_20 AC 292 ms
54,004 KB
testcase_21 AC 295 ms
54,136 KB
testcase_22 AC 291 ms
54,168 KB
testcase_23 AC 288 ms
54,108 KB
testcase_24 AC 291 ms
53,976 KB
testcase_25 AC 289 ms
54,136 KB
testcase_26 AC 289 ms
54,088 KB
testcase_27 AC 296 ms
54,044 KB
testcase_28 AC 289 ms
53,956 KB
testcase_29 AC 288 ms
54,164 KB
testcase_30 AC 291 ms
54,124 KB
testcase_31 AC 290 ms
54,180 KB
testcase_32 AC 286 ms
54,104 KB
testcase_33 AC 291 ms
54,028 KB
testcase_34 AC 289 ms
54,104 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) {
          ^

ソースコード

diff #

fun main( args : Array<String> ) {
  val nim = readLine()!!.toLong() % 4L
  when {
    nim == 3L -> "X"
    else -> "O"
  }.let { println(it) }
}
0