結果
問題 | No.537 ユーザーID |
ユーザー |
|
提出日時 | 2017-08-10 02:12:58 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 143 bytes |
コンパイル時間 | 196 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 16,000 KB |
最終ジャッジ日時 | 2024-10-12 00:40:33 |
合計ジャッジ時間 | 4,608 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 WA * 10 TLE * 1 -- * 16 |
ソースコード
N=int(input())A=[]for i in range(1,N):if N%i==0:if i not in A:A.append(i)if N//i not in A:A.append(N//i)print(len(A))