結果

問題 No.304 鍵(1)
ユーザー くわいくわい
提出日時 2015-12-25 17:23:48
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,156 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 12,945 ms
コンパイル使用メモリ 267,044 KB
実行使用メモリ 83,720 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-16 22:46:55
合計ジャッジ時間 21,263 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,011 ms
80,656 KB
testcase_01 AC 1,048 ms
79,856 KB
testcase_02 AC 1,156 ms
83,720 KB
testcase_03 AC 941 ms
80,088 KB
testcase_04 AC 1,031 ms
81,376 KB
testcase_05 AC 974 ms
80,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn

object Yukicoder extends App {
  (0 to 999) find { num =>
    val formatNum = num.formatted("%03d")
    println(formatNum)
    StdIn.readLine() == "unlocked"
  }
}
0