結果

問題 No.305 鍵(2)
ユーザー akitsugu777akitsugu777
提出日時 2019-08-02 14:45:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 347 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,608 KB
平均クエリ数 1.08
最終ジャッジ日時 2024-07-16 17:52:07
合計ジャッジ時間 5,103 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

key = ['0'] * 10
num = [str(i) for i in range(10)]
now = 0

for i in range(10):
    for j in range(10):
        key2 = key[:]
        key2[j] = num[i]
        print(''.join(key2))
        
        n, s = input().split()
        
        if n == '10':
            break
        
        elif n > now:
            key[j] = num[i]
            now = n
0