結果

問題 No.537 ユーザーID
ユーザー mlihua09mlihua09
提出日時 2020-08-28 19:35:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 62,112 KB
最終ジャッジ日時 2024-04-26 12:29:02
合計ジャッジ時間 2,803 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,452 KB
testcase_01 AC 37 ms
53,676 KB
testcase_02 AC 38 ms
52,464 KB
testcase_03 AC 37 ms
53,708 KB
testcase_04 AC 39 ms
52,648 KB
testcase_05 AC 37 ms
52,680 KB
testcase_06 AC 37 ms
53,116 KB
testcase_07 AC 35 ms
52,136 KB
testcase_08 AC 36 ms
52,748 KB
testcase_09 AC 35 ms
53,772 KB
testcase_10 AC 36 ms
52,196 KB
testcase_11 AC 34 ms
52,928 KB
testcase_12 AC 36 ms
53,088 KB
testcase_13 AC 37 ms
53,392 KB
testcase_14 AC 37 ms
52,532 KB
testcase_15 AC 35 ms
52,576 KB
testcase_16 AC 36 ms
52,220 KB
testcase_17 AC 37 ms
53,204 KB
testcase_18 AC 48 ms
58,852 KB
testcase_19 AC 52 ms
58,432 KB
testcase_20 AC 50 ms
58,000 KB
testcase_21 AC 47 ms
59,988 KB
testcase_22 AC 52 ms
59,320 KB
testcase_23 AC 48 ms
58,664 KB
testcase_24 AC 43 ms
59,284 KB
testcase_25 AC 53 ms
58,596 KB
testcase_26 AC 53 ms
58,568 KB
testcase_27 AC 48 ms
58,796 KB
testcase_28 AC 49 ms
61,480 KB
testcase_29 AC 57 ms
61,952 KB
testcase_30 AC 54 ms
61,764 KB
testcase_31 AC 45 ms
58,492 KB
testcase_32 AC 42 ms
57,888 KB
testcase_33 AC 55 ms
62,112 KB
testcase_34 AC 48 ms
59,812 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