結果
| 問題 | No.537 ユーザーID |
| コンテスト | |
| ユーザー |
oomagari
|
| 提出日時 | 2017-07-28 16:06:11 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 136 bytes |
| 記録 | |
| コンパイル時間 | 418 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 15,612 KB |
| 最終ジャッジ日時 | 2026-04-26 07:16:47 |
| 合計ジャッジ時間 | 7,878 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 WA * 13 |
ソースコード
N = int(input())
num = 0
a = 1
while a**2 < N:
if N%a == 0:
num += 2
a += 1
if a**2 == N:
num += 1
print(num)
oomagari