結果

問題 No.537 ユーザーID
ユーザー pressedkonbupressedkonbu
提出日時 2017-07-02 23:43:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-10-05 08:55:46
合計ジャッジ時間 4,484 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 24 ms
10,752 KB
testcase_08 AC 24 ms
10,880 KB
testcase_09 AC 24 ms
10,752 KB
testcase_10 AC 25 ms
10,880 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 25 ms
10,752 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 25 ms
10,752 KB
testcase_15 AC 25 ms
10,752 KB
testcase_16 AC 25 ms
10,752 KB
testcase_17 AC 24 ms
10,752 KB
testcase_18 AC 169 ms
10,880 KB
testcase_19 AC 227 ms
10,624 KB
testcase_20 AC 208 ms
10,880 KB
testcase_21 AC 160 ms
10,752 KB
testcase_22 AC 221 ms
10,752 KB
testcase_23 AC 139 ms
10,752 KB
testcase_24 AC 59 ms
10,752 KB
testcase_25 AC 217 ms
10,752 KB
testcase_26 AC 241 ms
10,624 KB
testcase_27 AC 184 ms
10,624 KB
testcase_28 AC 105 ms
11,392 KB
testcase_29 AC 241 ms
12,160 KB
testcase_30 AC 212 ms
11,904 KB
testcase_31 AC 92 ms
10,880 KB
testcase_32 AC 95 ms
10,752 KB
testcase_33 AC 238 ms
11,392 KB
testcase_34 AC 160 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = int(input())
count = 0
ans = list()
X = list()
for i in range(0, math.floor(math.sqrt(N))):
	q = N/(i+1)
	if q.is_integer(): #割り切れるか判定
		ans.append(i+1)
		ans.append(int(q))
for i in range(0, len(ans), 2):
	X.append(str(ans[i]) + str(ans[i+1]))
	X.append(str(ans[i+1]) + str(ans[i]))
X_uni = list(set(X)) #重複の削除
print(len(X_uni))
0