結果

問題 No.677 10^Nの約数
ユーザー tamatotamato
提出日時 2020-03-11 08:59:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 53,952 KB
最終ジャッジ日時 2024-11-16 00:04:18
合計ジャッジ時間 1,889 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,600 KB
testcase_01 AC 38 ms
53,376 KB
testcase_02 AC 39 ms
52,400 KB
testcase_03 AC 39 ms
52,612 KB
testcase_04 AC 40 ms
52,496 KB
testcase_05 AC 40 ms
52,940 KB
testcase_06 AC 40 ms
52,092 KB
testcase_07 AC 39 ms
53,952 KB
testcase_08 AC 40 ms
52,272 KB
testcase_09 AC 39 ms
52,660 KB
testcase_10 AC 40 ms
53,224 KB
testcase_11 AC 40 ms
53,152 KB
testcase_12 AC 40 ms
51,816 KB
testcase_13 AC 40 ms
53,700 KB
testcase_14 AC 40 ms
52,568 KB
testcase_15 AC 38 ms
52,636 KB
testcase_16 AC 39 ms
52,952 KB
testcase_17 AC 40 ms
52,256 KB
testcase_18 AC 40 ms
52,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    N = int(input())

    ans = []
    for i in range(N+1):
        for j in range(N+1):
            ans.append((2**i) * (5**j))
    ans.sort()
    print('\n'.join(map(str, ans)))


if __name__ == '__main__':
    main()
0