結果

問題 No.1915 Addition
ユーザー lloyzlloyz
提出日時 2022-04-29 21:48:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 211 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 82,236 KB
最終ジャッジ日時 2024-06-29 03:11:34
合計ジャッジ時間 3,823 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
59,168 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    n = int(input())
    f = 1
    while True:
        a = n + f
        b = int(str(n) + str(f))
        if b % a == 0:
            print(f)
            break
        f += 1
0