結果

問題 No.537 ユーザーID
ユーザー ああいいああいい
提出日時 2022-01-28 12:29:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 175 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 86,636 KB
実行使用メモリ 75,472 KB
最終ジャッジ日時 2023-08-28 08:53:04
合計ジャッジ時間 6,102 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,092 KB
testcase_01 AC 68 ms
71,020 KB
testcase_02 AC 67 ms
71,064 KB
testcase_03 AC 69 ms
71,184 KB
testcase_04 AC 71 ms
71,012 KB
testcase_05 AC 66 ms
71,312 KB
testcase_06 AC 70 ms
71,036 KB
testcase_07 AC 68 ms
71,148 KB
testcase_08 AC 68 ms
71,136 KB
testcase_09 WA -
testcase_10 AC 68 ms
71,112 KB
testcase_11 AC 69 ms
71,224 KB
testcase_12 AC 69 ms
71,180 KB
testcase_13 AC 69 ms
71,128 KB
testcase_14 AC 70 ms
71,168 KB
testcase_15 AC 71 ms
75,196 KB
testcase_16 AC 71 ms
75,472 KB
testcase_17 AC 71 ms
75,232 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