結果

問題 No.537 ユーザーID
ユーザー dangodango
提出日時 2023-06-06 20:15:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 164 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 63,012 KB
最終ジャッジ日時 2024-06-09 06:18:51
合計ジャッジ時間 2,609 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,208 KB
testcase_01 AC 33 ms
52,076 KB
testcase_02 AC 34 ms
52,300 KB
testcase_03 AC 32 ms
53,076 KB
testcase_04 AC 31 ms
52,488 KB
testcase_05 AC 31 ms
52,608 KB
testcase_06 AC 30 ms
52,564 KB
testcase_07 AC 31 ms
53,096 KB
testcase_08 AC 31 ms
52,016 KB
testcase_09 AC 31 ms
52,612 KB
testcase_10 AC 31 ms
51,820 KB
testcase_11 AC 30 ms
52,152 KB
testcase_12 AC 35 ms
52,524 KB
testcase_13 AC 30 ms
51,500 KB
testcase_14 AC 31 ms
53,088 KB
testcase_15 AC 31 ms
53,420 KB
testcase_16 AC 30 ms
53,436 KB
testcase_17 AC 30 ms
51,828 KB
testcase_18 AC 43 ms
58,392 KB
testcase_19 AC 46 ms
57,592 KB
testcase_20 AC 45 ms
58,120 KB
testcase_21 AC 40 ms
59,276 KB
testcase_22 AC 45 ms
58,216 KB
testcase_23 AC 41 ms
59,116 KB
testcase_24 AC 36 ms
58,388 KB
testcase_25 AC 46 ms
58,388 KB
testcase_26 AC 46 ms
58,440 KB
testcase_27 AC 43 ms
59,052 KB
testcase_28 AC 42 ms
63,012 KB
testcase_29 AC 50 ms
62,964 KB
testcase_30 AC 47 ms
61,608 KB
testcase_31 AC 40 ms
59,244 KB
testcase_32 AC 38 ms
58,988 KB
testcase_33 AC 54 ms
62,264 KB
testcase_34 AC 43 ms
57,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ANS = set()
I = 1
while I ** 2 <= N:
    if N % I == 0:
        ANS.add(f"{I}{N // I}")
        ANS.add(f"{N // I}{I}")
    I += 1
print(len(ANS))
0