結果
| 問題 |
No.537 ユーザーID
|
| コンテスト | |
| ユーザー |
lam6er
|
| 提出日時 | 2025-04-16 15:27:41 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 191 bytes |
| コンパイル時間 | 504 ms |
| コンパイル使用メモリ | 81,884 KB |
| 実行使用メモリ | 59,508 KB |
| 最終ジャッジ日時 | 2025-04-16 15:29:58 |
| 合計ジャッジ時間 | 2,635 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 WA * 13 |
ソースコード
N = int(input())
count = 0
i = 1
while i * i <= N:
if N % i == 0:
j = N // i
if i == j:
count += 1
else:
count += 2
i += 1
print(count)
lam6er