結果
問題 |
No.305 鍵(2)
|
ユーザー |
![]() |
提出日時 | 2023-05-09 13:55:54 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 447 bytes |
コンパイル時間 | 283 ms |
コンパイル使用メモリ | 82,328 KB |
実行使用メモリ | 83,348 KB |
平均クエリ数 | 101.77 |
最終ジャッジ日時 | 2024-11-26 00:55:17 |
合計ジャッジ時間 | 3,094 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 RE * 2 |
ソースコード
ans=[-1]*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) x = y # print(ans) print(''.join(ans),flush=True) z,s=input().split()