結果

問題 No.677 10^Nの約数
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-30 12:13:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 468 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,552 KB
最終ジャッジ日時 2024-06-28 00:21:55
合計ジャッジ時間 12,130 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 461 ms
44,172 KB
testcase_01 AC 449 ms
43,788 KB
testcase_02 AC 452 ms
44,052 KB
testcase_03 AC 456 ms
43,784 KB
testcase_04 AC 467 ms
44,048 KB
testcase_05 AC 462 ms
44,172 KB
testcase_06 AC 465 ms
44,428 KB
testcase_07 AC 456 ms
44,028 KB
testcase_08 AC 458 ms
44,160 KB
testcase_09 AC 456 ms
44,176 KB
testcase_10 AC 468 ms
43,800 KB
testcase_11 AC 458 ms
44,308 KB
testcase_12 AC 465 ms
43,912 KB
testcase_13 AC 465 ms
43,916 KB
testcase_14 AC 457 ms
44,044 KB
testcase_15 AC 458 ms
44,044 KB
testcase_16 AC 458 ms
44,552 KB
testcase_17 AC 458 ms
44,044 KB
testcase_18 AC 458 ms
44,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N = int(input())

a = np.arange(N + 1, dtype=np.int64)
two = 2 ** a
five = 5 ** a

ans = np.multiply.outer(two, five).flatten()
print(*np.sort(ans), sep="\n")
0