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