結果
| 問題 | No.537 ユーザーID |
| コンテスト | |
| ユーザー |
lam6er
|
| 提出日時 | 2025-04-15 20:59:56 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 209 bytes |
| 記録 | |
| コンパイル時間 | 226 ms |
| コンパイル使用メモリ | 96,236 KB |
| 実行使用メモリ | 83,300 KB |
| 最終ジャッジ日時 | 2026-07-08 22:13:10 |
| 合計ジャッジ時間 | 3,858 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 WA * 13 |
ソースコード
import math
N = int(input())
count = 0
for a in range(1, math.isqrt(N) + 1):
if N % a == 0:
b = N // a
if a == b:
count += 1
else:
count += 2
print(count)
lam6er