結果
問題 | No.305 鍵(2) |
ユーザー | mastersatoshi |
提出日時 | 2017-06-29 08:13:18 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 665 bytes |
コンパイル時間 | 239 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 28,064 KB |
平均クエリ数 | 80.15 |
最終ジャッジ日時 | 2024-07-16 13:54:10 |
合計ジャッジ時間 | 3,814 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 53 ms
27,736 KB |
testcase_06 | AC | 49 ms
27,352 KB |
testcase_07 | AC | 58 ms
27,480 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
#import pdb; pdb.set_trace() import sys import copy def main(): a = ["0","0","0","0","0","0","0","0","0","0"] num = ["0","1","2","3","4","5","6","7","8","9"] f = ["" for i in range(10)] now = 0 for i in range(1, 10): print ("".join(a)) (x, z) = input().split() if x == "10": sys.exit() now = x for j in range(10): tmpa = copy.deepcopy(a) tmpa[j] = num[i] print ("".join(tmpa)) (x, z) = input().split() if x > now: a[j] = num[i] now = x if __name__ == '__main__': main()