結果

問題 No.537 ユーザーID
ユーザー 双六双六
提出日時 2020-07-29 23:19:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 64,016 KB
最終ジャッジ日時 2024-06-30 13:04:54
合計ジャッジ時間 2,968 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,564 KB
testcase_01 AC 42 ms
54,912 KB
testcase_02 AC 43 ms
54,940 KB
testcase_03 AC 42 ms
55,644 KB
testcase_04 AC 43 ms
54,672 KB
testcase_05 AC 42 ms
54,652 KB
testcase_06 AC 44 ms
54,376 KB
testcase_07 AC 42 ms
54,276 KB
testcase_08 AC 42 ms
55,320 KB
testcase_09 AC 43 ms
54,648 KB
testcase_10 AC 40 ms
53,672 KB
testcase_11 AC 42 ms
54,444 KB
testcase_12 AC 42 ms
54,308 KB
testcase_13 AC 42 ms
54,192 KB
testcase_14 AC 42 ms
55,320 KB
testcase_15 AC 42 ms
54,724 KB
testcase_16 AC 42 ms
54,916 KB
testcase_17 AC 42 ms
54,112 KB
testcase_18 AC 54 ms
59,824 KB
testcase_19 AC 57 ms
60,180 KB
testcase_20 AC 55 ms
59,660 KB
testcase_21 AC 53 ms
59,664 KB
testcase_22 AC 57 ms
59,608 KB
testcase_23 AC 53 ms
59,956 KB
testcase_24 AC 46 ms
59,512 KB
testcase_25 AC 58 ms
60,400 KB
testcase_26 AC 58 ms
60,364 KB
testcase_27 AC 54 ms
60,300 KB
testcase_28 AC 53 ms
62,972 KB
testcase_29 AC 62 ms
63,032 KB
testcase_30 AC 60 ms
64,016 KB
testcase_31 AC 49 ms
59,956 KB
testcase_32 AC 49 ms
60,816 KB
testcase_33 AC 62 ms
62,660 KB
testcase_34 AC 55 ms
60,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N = int(input())
	D = defaultdict(int)
	for i in range(1, int(N ** 0.5) + 2):
		if N % i == 0:
			a = str(i)
			b = str(int(N // i))
			D[a + b] = 1
			D[b + a] = 1

	ans = len(D)
	print(ans)

if __name__ == '__main__':
	main()
0