結果

問題 No.537 ユーザーID
ユーザー akitsugu777
提出日時 2018-10-26 16:36:56
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 123 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 818,012 KB
最終ジャッジ日時 2024-11-19 06:20:59
合計ジャッジ時間 40,573 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6 WA * 9 TLE * 16 MLE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
l = [i+1 for i in range(n+1)]

l2 = []
for i in l:
    if n % i == 0:
        l2.append(i)

print(len(l2))
0