結果
| 問題 |
No.537 ユーザーID
|
| コンテスト | |
| ユーザー |
JunOnuma
|
| 提出日時 | 2017-07-03 13:38:10 |
| 言語 | Python2 (2.7.18) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 136 bytes |
| コンパイル時間 | 107 ms |
| コンパイル使用メモリ | 7,040 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-05 11:19:37 |
| 合計ジャッジ時間 | 3,257 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 WA * 13 |
ソースコード
n = int(raw_input())
d = 1
c = 0
while d * d < n:
if n % d == 0:
c += 1
d += 1
c *= 2
if d * d == n:
c += 1
print c
JunOnuma