結果

問題 No.537 ユーザーID
ユーザー ああいいああいい
提出日時 2022-01-28 12:29:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 175 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 66,432 KB
最終ジャッジ日時 2024-06-09 04:30:57
合計ジャッジ時間 5,080 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
59,160 KB
testcase_01 AC 32 ms
53,280 KB
testcase_02 AC 33 ms
53,016 KB
testcase_03 AC 33 ms
52,948 KB
testcase_04 AC 35 ms
52,552 KB
testcase_05 AC 35 ms
52,520 KB
testcase_06 AC 35 ms
52,024 KB
testcase_07 AC 31 ms
52,244 KB
testcase_08 AC 32 ms
52,324 KB
testcase_09 WA -
testcase_10 AC 32 ms
53,220 KB
testcase_11 AC 31 ms
52,408 KB
testcase_12 AC 32 ms
52,596 KB
testcase_13 AC 32 ms
52,612 KB
testcase_14 AC 33 ms
52,648 KB
testcase_15 AC 36 ms
58,780 KB
testcase_16 AC 34 ms
58,172 KB
testcase_17 AC 34 ms
57,752 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

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