結果

問題 No.537 ユーザーID
ユーザー S6136OS6136O
提出日時 2017-09-21 01:25:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 268 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-11-08 09:24:27
合計ジャッジ時間 17,575 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,000 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1,127 ms
10,624 KB
testcase_19 AC 359 ms
10,752 KB
testcase_20 AC 244 ms
10,752 KB
testcase_21 AC 503 ms
10,752 KB
testcase_22 AC 1,107 ms
10,752 KB
testcase_23 TLE -
testcase_24 AC 75 ms
10,752 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 644 ms
10,752 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
limit = int(n**(1/2))
numbers = []

for i in range(1, limit + 1):
    if i in numbers:
        break
    elif n%i == 0:
        numbers.append(i)
        numbers.append(n//i)

if limit**2 == n:
    print(len(numbers) - 1)
else:
    print(len(numbers))
0