結果
問題 | No.537 ユーザーID |
ユーザー |
![]() |
提出日時 | 2019-10-17 21:22:40 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 140 bytes |
コンパイル時間 | 101 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 17,696 KB |
最終ジャッジ日時 | 2024-06-25 01:25:03 |
合計ジャッジ時間 | 4,514 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 TLE * 1 -- * 16 |
ソースコード
N = int(input()) S = set() for i in range(1,N+1) : if N % i != 0 : continue j = N//i S.add(str(i)+str(j)) print(len(S))