結果
| 問題 | No.677 10^Nの約数 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2018-10-25 11:24:35 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                TLE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 121 bytes | 
| コンパイル時間 | 91 ms | 
| コンパイル使用メモリ | 12,416 KB | 
| 実行使用メモリ | 24,136 KB | 
| 最終ジャッジ日時 | 2024-11-19 05:40:04 | 
| 合計ジャッジ時間 | 37,138 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 5 TLE * 12 | 
ソースコード
n = int(input())
l = []
for i in range(1, 10**n+1):
    if 10**n % i == 0:
        l.append(i)
for i in l:
    print(i)
            
            
            
        