結果
| 問題 | No.537 ユーザーID |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-06-30 22:25:23 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 100 ms / 2,000 ms |
| コード長 | 193 bytes |
| 記録 | |
| コンパイル時間 | 148 ms |
| コンパイル使用メモリ | 77,456 KB |
| 最終ジャッジ日時 | 2025-12-04 00:20:12 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 32 |
ソースコード
N = input()
s = set()
for i in xrange(1, 10**6+5):
if N % i == 0 and i <= N / i:
s.add(str(i) + str(N/i))
if i != N / i:
s.add(str(N/i) + str(i))
print len(s)