結果
| 問題 | No.677 10^Nの約数 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2018-04-27 22:34:46 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                MLE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 205 bytes | 
| コンパイル時間 | 88 ms | 
| コンパイル使用メモリ | 12,416 KB | 
| 実行使用メモリ | 817,780 KB | 
| 最終ジャッジ日時 | 2024-06-27 21:57:46 | 
| 合計ジャッジ時間 | 3,797 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 10 MLE * 1 -- * 6 | 
ソースコード
N = int(input())
tmp = [1, 2, 5, 10]
res = [1, 2, 5, 10]
for i in range(N-1):
    res = [i*j for i in tmp for j in res]
if N == 0:
    print(1)
else:
    for i in sorted(list(set(res))):
        print(i)
            
            
            
        