結果
問題 | No.481 1から10 |
ユーザー | uchida_t |
提出日時 | 2023-05-30 13:11:18 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 280 bytes |
コンパイル時間 | 11,956 ms |
コンパイル使用メモリ | 432,192 KB |
実行使用メモリ | 60,168 KB |
最終ジャッジ日時 | 2024-06-08 20:07:16 |
合計ジャッジ時間 | 16,217 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 316 ms
53,720 KB |
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used fun main(args: Array<String>) { ^
ソースコード
fun main(args: Array<String>) { val list = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9) for (i in 0 until 10) { if (i == 9) { println(10) break } if (list[i] != i + 1) { println(i + 1) break } } }