結果
| 問題 | No.537 ユーザーID | 
| コンテスト | |
| ユーザー |  fV9TwBhUoa9S3eV | 
| 提出日時 | 2019-10-10 14:47:27 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 183 bytes | 
| コンパイル時間 | 379 ms | 
| コンパイル使用メモリ | 12,416 KB | 
| 実行使用メモリ | 10,752 KB | 
| 最終ジャッジ日時 | 2024-11-21 11:01:04 | 
| 合計ジャッジ時間 | 6,181 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 19 WA * 13 | 
ソースコード
# No.537 ユーザーID
n = int(input())
pairs = 0
for i in range(1, int(n ** 0.5) + 1):
    if i ** 2 == n:
        pairs += 1
    elif n % i == 0:
        pairs += 2
print(pairs)
            
            
            
        