結果
問題 | No.537 ユーザーID |
ユーザー |
|
提出日時 | 2017-06-30 22:22:27 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 117 bytes |
コンパイル時間 | 487 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-04 19:07:04 |
合計ジャッジ時間 | 5,436 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 WA * 17 |
ソースコード
N = input()s = set()for i in xrange(1, 10**6+5):if N % i == 0:s.add(str(i) + str(N/i))print len(s)