結果

問題 No.304 鍵(1)
ユーザー くわいくわい
提出日時 2015-12-25 17:23:48
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,129 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 11,757 ms
コンパイル使用メモリ 250,672 KB
実行使用メモリ 78,332 KB
平均クエリ数 309.17
最終ジャッジ日時 2023-09-23 23:01:24
合計ジャッジ時間 20,104 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 900 ms
76,764 KB
testcase_01 AC 970 ms
76,944 KB
testcase_02 AC 1,129 ms
78,140 KB
testcase_03 AC 915 ms
77,064 KB
testcase_04 AC 1,028 ms
78,332 KB
testcase_05 AC 904 ms
77,588 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