結果
問題 |
No.537 ユーザーID
|
ユーザー |
|
提出日時 | 2020-08-28 19:35:03 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 57 ms / 2,000 ms |
コード長 | 215 bytes |
コンパイル時間 | 318 ms |
コンパイル使用メモリ | 82,024 KB |
実行使用メモリ | 62,432 KB |
最終ジャッジ日時 | 2024-11-13 23:40:47 |
合計ジャッジ時間 | 3,121 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 32 |
ソースコード
N = int(input()) ans = [] for i in range(1, int(N ** 0.5) + 1): if N % i == 0: ans += [str(i) + str(N // i)] ans += [str(N // i) + str(i)] print(len(set(ans)))