結果
問題 | No.305 鍵(2) |
ユーザー | lllllll88938494 |
提出日時 | 2023-05-09 13:46:26 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 392 bytes |
コンパイル時間 | 239 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 82,264 KB |
平均クエリ数 | 101.69 |
最終ジャッジ日時 | 2024-05-04 13:23:13 |
合計ジャッジ時間 | 4,606 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 73 ms
68,832 KB |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
ans=[0]*10 for i in range(10): t= [str(i) for _ in range(10)] print(''.join(t),flush=True) x,s=input().split() x=int(x) for j in range(10): t[j] = str((i+1)%10) print(''.join(t),flush=True) y,s=input().split() y=int(y) if x>y: ans[j] = str(i) print(''.join(ans),flush=True) z,s=input().split()