結果
| 問題 | No.537 ユーザーID |
| コンテスト | |
| ユーザー |
JunOnuma
|
| 提出日時 | 2017-07-03 13:44:39 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
AC
|
| 実行時間 | 56 ms / 2,000 ms |
| + 446µs | |
| コード長 | 174 bytes |
| 記録 | |
| コンパイル時間 | 65 ms |
| コンパイル使用メモリ | 81,408 KB |
| 実行使用メモリ | 82,816 KB |
| 最終ジャッジ日時 | 2026-07-18 15:19:56 |
| 合計ジャッジ時間 | 3,511 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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