結果
問題 | No.537 ユーザーID |
ユーザー |
|
提出日時 | 2018-12-19 13:54:44 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 233 ms / 2,000 ms |
コード長 | 200 bytes |
コンパイル時間 | 98 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,904 KB |
最終ジャッジ日時 | 2024-09-25 07:57:12 |
合計ジャッジ時間 | 4,658 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 32 |
ソースコード
n = int(input())sqr = n**0.5ls = []for i in range(int(sqr)):if n%(i+1) == 0:f = str(i+1)l = str(n//(i+1))ls.append(f+l)ls.append(l+f)print(len(set(ls)))