結果
| 問題 | No.677 10^Nの約数 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2018-04-27 22:33:31 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 172 bytes | 
| コンパイル時間 | 96 ms | 
| コンパイル使用メモリ | 12,416 KB | 
| 実行使用メモリ | 821,388 KB | 
| 最終ジャッジ日時 | 2024-06-27 21:56:47 | 
| 合計ジャッジ時間 | 4,227 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 9 WA * 1 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]
for i in sorted(list(set(res))):
    print(i)
    
            
            
            
        