結果

問題 No.537 ユーザーID
ユーザー akanayaakanaya
提出日時 2020-03-31 09:20:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 332 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-23 23:20:34
合計ジャッジ時間 4,433 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 34 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 30 ms
10,880 KB
testcase_17 WA -
testcase_18 AC 156 ms
10,752 KB
testcase_19 AC 196 ms
10,752 KB
testcase_20 AC 177 ms
10,752 KB
testcase_21 AC 124 ms
10,752 KB
testcase_22 AC 190 ms
10,880 KB
testcase_23 AC 121 ms
10,752 KB
testcase_24 AC 57 ms
10,752 KB
testcase_25 AC 191 ms
10,752 KB
testcase_26 AC 205 ms
10,880 KB
testcase_27 AC 160 ms
10,880 KB
testcase_28 AC 98 ms
11,008 KB
testcase_29 AC 209 ms
11,264 KB
testcase_30 AC 176 ms
11,264 KB
testcase_31 WA -
testcase_32 AC 88 ms
10,880 KB
testcase_33 WA -
testcase_34 AC 148 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

def divisors(n):
    div = []
    i = 1
    while(i * i <= n):
        if n % i == 0:
            div.append([i, n // i])
        i += 1
    return div


div = divisors(n)

count = 0
for d in div:
    if str(d[0]) + str(d[1]) == str(d[1]) + str(d[0]):
        count += 1
    else:
        count += 2

print(count)
0