結果
| 問題 |
No.537 ユーザーID
|
| コンテスト | |
| ユーザー |
gim
|
| 提出日時 | 2017-07-07 14:38:11 |
| 言語 | Python2 (2.7.18) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 188 bytes |
| コンパイル時間 | 94 ms |
| コンパイル使用メモリ | 6,944 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-06 10:00:27 |
| 合計ジャッジ時間 | 3,508 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 WA * 13 |
ソースコード
N=int(raw_input())
num1=1
cnt=0
while num1*num1<=N:
if N%num1==0:
num2=N/num1
if num1!=num2:
cnt+=2
else:
cnt+=1
num1+=1
print cnt
gim