結果
問題 | No.305 鍵(2) |
ユーザー | yumechi |
提出日時 | 2015-11-27 23:43:35 |
言語 | Ruby (3.3.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 518 bytes |
コンパイル時間 | 331 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 44,208 KB |
最終ジャッジ日時 | 2024-07-16 21:54:59 |
合計ジャッジ時間 | 6,446 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
res = "" cnt = 0 curdigit = 0 lastnum = -1 while res != "unlocked" do inp = format("%010d", cnt) puts inp num, res = gets.chomp.split(" ") num = num.to_i if num == 10 break end if lastnum == -1 cnt += 10 ** curdigit lastnum = num elsif lastnum < num curdigit += 1 lastnum = -1 elsif lastnum > num cnt -= 10 ** curdigit curdigit += 1 lastnum = -1 else cnt += 10 ** curdigit lastnum = num end end