結果

問題 No.537 ユーザーID
ユーザー tobusakanatobusakana
提出日時 2020-11-29 19:21:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 87,096 KB
実行使用メモリ 76,964 KB
最終ジャッジ日時 2023-10-11 02:32:29
合計ジャッジ時間 5,277 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,868 KB
testcase_01 AC 71 ms
71,912 KB
testcase_02 AC 71 ms
71,968 KB
testcase_03 AC 73 ms
71,952 KB
testcase_04 AC 71 ms
71,956 KB
testcase_05 AC 72 ms
71,840 KB
testcase_06 AC 71 ms
71,508 KB
testcase_07 AC 72 ms
71,840 KB
testcase_08 AC 70 ms
71,616 KB
testcase_09 AC 72 ms
71,684 KB
testcase_10 AC 72 ms
71,608 KB
testcase_11 AC 71 ms
71,668 KB
testcase_12 AC 73 ms
71,728 KB
testcase_13 AC 70 ms
71,844 KB
testcase_14 AC 72 ms
71,516 KB
testcase_15 AC 71 ms
71,868 KB
testcase_16 AC 73 ms
71,876 KB
testcase_17 AC 71 ms
71,728 KB
testcase_18 AC 85 ms
75,964 KB
testcase_19 AC 86 ms
76,244 KB
testcase_20 AC 86 ms
75,972 KB
testcase_21 AC 81 ms
76,092 KB
testcase_22 AC 86 ms
76,132 KB
testcase_23 AC 81 ms
76,232 KB
testcase_24 AC 77 ms
75,980 KB
testcase_25 AC 86 ms
76,180 KB
testcase_26 AC 87 ms
76,308 KB
testcase_27 AC 83 ms
76,256 KB
testcase_28 AC 82 ms
76,468 KB
testcase_29 AC 91 ms
76,692 KB
testcase_30 AC 89 ms
76,832 KB
testcase_31 AC 78 ms
76,132 KB
testcase_32 AC 77 ms
76,260 KB
testcase_33 AC 90 ms
76,964 KB
testcase_34 AC 84 ms
76,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

N = int(readline())

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