結果
問題 | No.481 1から10 |
ユーザー | uchida_t |
提出日時 | 2023-05-30 12:56:07 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 208 bytes |
コンパイル時間 | 13,746 ms |
コンパイル使用メモリ | 434,096 KB |
実行使用メモリ | 54,108 KB |
最終ジャッジ日時 | 2024-06-08 20:05:45 |
合計ジャッジ時間 | 17,546 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 276 ms
53,804 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
コンパイルメッセージ
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, 9, 10) for (i in 0 until 10) { if (list[i] != i + 1) { println(i + 1) return } } }