結果

問題 No.304 鍵(1)
ユーザー javyjavy
提出日時 2015-11-27 22:34:24
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 379 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 12,657 ms
コンパイル使用メモリ 432,716 KB
実行使用メモリ 67,032 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-16 20:44:23
合計ジャッジ時間 14,809 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
66,692 KB
testcase_01 AC 295 ms
66,656 KB
testcase_02 AC 379 ms
67,032 KB
testcase_03 AC 301 ms
66,124 KB
testcase_04 AC 359 ms
66,616 KB
testcase_05 AC 310 ms
66,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package Yukicoder

/**
 * Created by hichikawa on 2015/11/12.
 */
fun main(args: Array<String>) {
    for (i in 0..9) {
        for (j in 0..9) {
            for (k in 0..9) {
                println(i.toString() + j.toString() + k.toString())
                val input = readLine() as String
                if (input.equals("unlocked")) {
                    return
                }
            }
        }
    }
}
0