結果
問題 |
No.537 ユーザーID
|
ユーザー |
![]() |
提出日時 | 2020-02-24 23:19:23 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 452 ms / 2,000 ms |
コード長 | 182 bytes |
コンパイル時間 | 180 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,648 KB |
最終ジャッジ日時 | 2024-10-12 18:00:51 |
合計ジャッジ時間 | 7,165 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 32 |
ソースコード
N = int(input()) sqrt = int(N ** 0.5) S = set() for i in range(1, sqrt + 1): q, r = divmod(N, i) if r == 0: S.add(f"{i}{q}") S.add(f"{q}{i}") print(len(S))