結果

問題 No.305 鍵(2)
ユーザー rlangevinrlangevin
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
76,672 KB
testcase_01 AC 86 ms
75,980 KB
testcase_02 AC 77 ms
76,648 KB
testcase_03 AC 76 ms
75,512 KB
testcase_04 AC 77 ms
75,384 KB
testcase_05 AC 78 ms
76,032 KB
testcase_06 AC 64 ms
68,632 KB
testcase_07 AC 77 ms
75,872 KB
testcase_08 AC 77 ms
75,652 KB
testcase_09 AC 75 ms
75,288 KB
testcase_10 AC 76 ms
75,540 KB
testcase_11 AC 75 ms
75,652 KB
testcase_12 AC 75 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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()
0