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