結果
| 問題 |
No.537 ユーザーID
|
| コンテスト | |
| ユーザー |
monburan_0401
|
| 提出日時 | 2019-05-10 00:54:11 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 172 bytes |
| コンパイル時間 | 101 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-07-02 00:53:55 |
| 合計ジャッジ時間 | 4,193 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 WA * 13 |
ソースコード
import math
N = int(input())
n = int(math.ceil(N**0.5))
count = 0
for x in range(1,n):
if N % x == 0:
count += 2
if int(n**2) == N:
count += 1
print(count)
monburan_0401