結果
問題 | No.537 ユーザーID |
ユーザー |
|
提出日時 | 2017-06-30 22:25:23 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 106 ms / 2,000 ms |
コード長 | 193 bytes |
コンパイル時間 | 230 ms |
コンパイル使用メモリ | 7,072 KB |
実行使用メモリ | 7,296 KB |
最終ジャッジ日時 | 2024-10-04 19:26:20 |
合計ジャッジ時間 | 4,767 ms |
ジャッジサーバーID (参考情報) |
judge3 / 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)