結果
| 問題 |
No.305 鍵(2)
|
| コンテスト | |
| ユーザー |
rlangevin
|
| 提出日時 | 2023-01-14 14:16:38 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 91 ms / 2,000 ms |
| コード長 | 395 bytes |
| コンパイル時間 | 247 ms |
| コンパイル使用メモリ | 82,072 KB |
| 実行使用メモリ | 76,672 KB |
| 平均クエリ数 | 93.23 |
| 最終ジャッジ日時 | 2024-07-17 03:14:46 |
| 合計ジャッジ時間 | 2,476 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 |
ソースコード
import sys
ans = [0] * 10
D = [[0] * 10 for i in range(10)]
for i in range(10):
for j in range(10):
ans[i] = j
print(*ans, sep="")
sys.stdout.flush()
Q = input().split()
if Q[1] == "unlocked":
exit()
D[i][j] = int(Q[0])
for i in range(10):
ans[i] = D[i].index(max(D[i]))
print(*ans, sep="")
sys.stdout.flush()
exit()
rlangevin