結果

問題 No.537 ユーザーID
ユーザー mlihua09mlihua09
提出日時 2020-08-28 19:35:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 62,432 KB
最終ジャッジ日時 2024-11-13 23:40:47
合計ジャッジ時間 3,121 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,196 KB
testcase_01 AC 37 ms
52,804 KB
testcase_02 AC 36 ms
52,868 KB
testcase_03 AC 37 ms
52,976 KB
testcase_04 AC 36 ms
52,564 KB
testcase_05 AC 36 ms
52,816 KB
testcase_06 AC 37 ms
52,452 KB
testcase_07 AC 37 ms
53,668 KB
testcase_08 AC 36 ms
52,252 KB
testcase_09 AC 36 ms
52,480 KB
testcase_10 AC 36 ms
52,876 KB
testcase_11 AC 37 ms
53,616 KB
testcase_12 AC 37 ms
53,184 KB
testcase_13 AC 37 ms
52,368 KB
testcase_14 AC 37 ms
52,376 KB
testcase_15 AC 37 ms
53,164 KB
testcase_16 AC 36 ms
53,240 KB
testcase_17 AC 37 ms
52,992 KB
testcase_18 AC 49 ms
57,648 KB
testcase_19 AC 52 ms
57,916 KB
testcase_20 AC 50 ms
58,848 KB
testcase_21 AC 48 ms
58,240 KB
testcase_22 AC 52 ms
58,360 KB
testcase_23 AC 48 ms
58,832 KB
testcase_24 AC 42 ms
58,012 KB
testcase_25 AC 53 ms
58,708 KB
testcase_26 AC 53 ms
58,488 KB
testcase_27 AC 50 ms
59,104 KB
testcase_28 AC 50 ms
61,084 KB
testcase_29 AC 57 ms
62,432 KB
testcase_30 AC 56 ms
61,736 KB
testcase_31 AC 45 ms
58,736 KB
testcase_32 AC 44 ms
58,260 KB
testcase_33 AC 57 ms
60,496 KB
testcase_34 AC 49 ms
58,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

ans = []

for i in range(1, int(N ** 0.5) + 1):
    
    if N % i == 0:
        
        ans += [str(i) + str(N // i)]
        
        ans += [str(N // i) + str(i)]
        
print(len(set(ans)))
0