結果

問題 No.305 鍵(2)
コンテスト
ユーザー ああいい
提出日時 2021-12-06 22:58:03
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
RE  
実行時間 -
コード長 272 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 408 ms
コンパイル使用メモリ 20,572 KB
実行使用メモリ 39,768 KB
平均クエリ数 2.00
最終ジャッジ日時 2026-03-29 00:00:33
合計ジャッジ時間 6,488 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 13
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code


a = ['0'] * 10
print('0' * 10)
X,S = input().split()
X = int(X)

for i in range(10):
    for j in range(1,10):
        print('0' * i + str(j) + '0' * (9-i))
        x,s = input.split()
        x = int(x)
        if x == X + 1:
            a[i] = str(j)
print(''.join(a))
0