結果
問題 |
No.537 ユーザーID
|
ユーザー |
![]() |
提出日時 | 2017-12-11 22:28:09 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 209 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,632 KB |
最終ジャッジ日時 | 2024-11-30 21:05:22 |
合計ジャッジ時間 | 52,946 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 TLE * 17 |
ソースコード
n = int(input()) pair = [] ans = set() for i in range(1, n+1): if n % i == 0: pair.append([int(n/i), i]) for i in pair: ans.add(str(i[0]) + str(i[1])) ans.add(str(i[1]) + str(i[0])) print(len(ans))