結果

問題 No.537 ユーザーID
ユーザー ああいいああいい
提出日時 2022-01-28 12:30:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 61,684 KB
最終ジャッジ日時 2024-06-09 04:31:47
合計ジャッジ時間 2,613 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,132 KB
testcase_01 AC 33 ms
51,980 KB
testcase_02 AC 33 ms
52,120 KB
testcase_03 AC 32 ms
52,884 KB
testcase_04 AC 31 ms
53,036 KB
testcase_05 AC 32 ms
52,216 KB
testcase_06 AC 32 ms
52,792 KB
testcase_07 AC 32 ms
53,408 KB
testcase_08 AC 37 ms
52,456 KB
testcase_09 AC 32 ms
52,416 KB
testcase_10 AC 32 ms
52,456 KB
testcase_11 AC 33 ms
52,580 KB
testcase_12 AC 33 ms
52,640 KB
testcase_13 AC 33 ms
52,068 KB
testcase_14 AC 32 ms
52,164 KB
testcase_15 AC 32 ms
52,036 KB
testcase_16 AC 32 ms
53,016 KB
testcase_17 AC 34 ms
51,940 KB
testcase_18 AC 45 ms
59,000 KB
testcase_19 AC 47 ms
58,856 KB
testcase_20 AC 47 ms
58,080 KB
testcase_21 AC 42 ms
58,324 KB
testcase_22 AC 47 ms
58,072 KB
testcase_23 AC 43 ms
58,500 KB
testcase_24 AC 37 ms
59,400 KB
testcase_25 AC 45 ms
58,076 KB
testcase_26 AC 50 ms
57,944 KB
testcase_27 AC 43 ms
57,892 KB
testcase_28 AC 42 ms
61,684 KB
testcase_29 AC 51 ms
60,744 KB
testcase_30 AC 51 ms
60,320 KB
testcase_31 AC 37 ms
59,656 KB
testcase_32 AC 38 ms
58,096 KB
testcase_33 AC 47 ms
60,016 KB
testcase_34 AC 43 ms
58,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
s = set()
i = 1
while i * i <= N:
    if N % i == 0:
        j = N // i
        s.add(str(i) + str(j))
        s.add(str(j) + str(i))
    i += 1
print(len(s))
0