結果
| 問題 |
No.537 ユーザーID
|
| コンテスト | |
| ユーザー |
JunOnuma
|
| 提出日時 | 2017-07-03 13:44:39 |
| 言語 | Python2 (2.7.18) |
| 結果 |
AC
|
| 実行時間 | 179 ms / 2,000 ms |
| コード長 | 174 bytes |
| コンパイル時間 | 45 ms |
| コンパイル使用メモリ | 6,948 KB |
| 実行使用メモリ | 7,168 KB |
| 最終ジャッジ日時 | 2024-10-05 11:39:05 |
| 合計ジャッジ時間 | 3,400 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 32 |
ソースコード
n = int(raw_input())
d = 1
s = set()
while d * d <= n:
if n % d == 0:
e = n / d
s.add(str(d)+str(e))
s.add(str(e)+str(d))
d += 1
print len(s)
JunOnuma