結果

問題 No.2016 Countdown Divisors
ユーザー ntudantuda
提出日時 2022-10-09 02:33:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 578 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-23 03:32:47
合計ジャッジ時間 11,159 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 558 ms
10,752 KB
testcase_02 AC 572 ms
10,752 KB
testcase_03 AC 519 ms
10,752 KB
testcase_04 AC 448 ms
10,624 KB
testcase_05 AC 448 ms
10,880 KB
testcase_06 AC 179 ms
10,752 KB
testcase_07 AC 176 ms
10,624 KB
testcase_08 AC 552 ms
10,752 KB
testcase_09 AC 558 ms
10,752 KB
testcase_10 AC 575 ms
10,752 KB
testcase_11 AC 564 ms
10,752 KB
testcase_12 AC 570 ms
10,880 KB
testcase_13 AC 544 ms
10,752 KB
testcase_14 AC 578 ms
10,624 KB
testcase_15 AC 516 ms
10,880 KB
testcase_16 AC 542 ms
10,752 KB
testcase_17 AC 521 ms
10,752 KB
testcase_18 AC 526 ms
10,880 KB
testcase_19 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_divisors(n):
    divisors = []  #必要に応じてsetにしても良いかも
    i = 1
    while i ** 2 <= n:
        if n % i == 0:
            divisors.append(i)
            if i ** 2 != n:
                divisors.append(n//i)
        i += 1
    divisors.sort()
    return divisors

N = 10
f = [0] * (N+1)
for i in range(1,N+1):
    dn = len(make_divisors(i))
    if i == dn:
        f[i] = i
    else:
        f[i] = f[i - dn]

T = int(input())
for _ in range(T):
    N = int(input())
    if N < 10:
        print(f[N])
    else:
        print(2)
0