結果
問題 | No.305 鍵(2) |
ユーザー | tatt61880 |
提出日時 | 2021-03-02 23:49:59 |
言語 | Kuin (KuinC++ v.2021.9.17) |
結果 |
RE
|
実行時間 | - |
コード長 | 402 bytes |
コンパイル時間 | 2,223 ms |
コンパイル使用メモリ | 145,592 KB |
実行使用メモリ | 25,508 KB |
平均クエリ数 | 87.69 |
最終ジャッジ日時 | 2024-09-16 11:46:24 |
合計ジャッジ時間 | 6,108 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
func main() var ans: []char :: "0".repeat(10) for i(0, 9) var maxX: int :: 0 var maxD: int :: 0 for d(0, 9) do ans[i] :: '0'.offset(d) do cui@print("\{ans}\n") do cui@flush() var x: int :: cui@inputInt() var s: []char :: cui@input() if(x > maxX) do maxX :: x do maxD :: d end if end for do ans[i] :: '0'.offset(maxD) end for do cui@print("\{ans}\n") end func