結果

問題 No.305 鍵(2)
ユーザー javyjavy
提出日時 2015-11-27 22:58:36
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 382 ms / 2,000 ms
コード長 904 bytes
コンパイル時間 12,743 ms
コンパイル使用メモリ 440,008 KB
実行使用メモリ 73,828 KB
平均クエリ数 44.08
最終ジャッジ日時 2024-07-16 21:50:53
合計ジャッジ時間 18,867 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 345 ms
73,620 KB
testcase_01 AC 351 ms
73,236 KB
testcase_02 AC 330 ms
73,316 KB
testcase_03 AC 344 ms
73,460 KB
testcase_04 AC 368 ms
73,544 KB
testcase_05 AC 382 ms
73,828 KB
testcase_06 AC 314 ms
73,400 KB
testcase_07 AC 367 ms
73,688 KB
testcase_08 AC 377 ms
73,220 KB
testcase_09 AC 364 ms
73,296 KB
testcase_10 AC 366 ms
73,612 KB
testcase_11 AC 366 ms
73,696 KB
testcase_12 AC 382 ms
73,264 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>) {
    var arrInt = Array<Int>(10, {0})
    for (item in arrInt) {
        print(item)
    }
    println()
    var intCount = (readLine() as String).split(" ")[0].toInt()
    if (intCount == 10)
        return
    for (i in 0..9) {
        for (j in 1..9) {
            arrInt[i] = j

            for (item in arrInt) {
                print(item)
            }
            println()
            val intCountTmp = (readLine() as String).split(" ")[0].toInt()
            if (intCountTmp == 10)
                return
            if (intCountTmp != intCount) {
                if (intCountTmp > intCount) {
                    intCount = intCountTmp
                    break
                } else {
                    arrInt[i] = 0
                    break
                }
            }
        }
    }
}
0