結果
問題 |
No.1157 Many Quotients easy
|
ユーザー |
|
提出日時 | 2021-11-18 02:03:23 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 257 bytes |
コンパイル時間 | 2,290 ms |
コンパイル使用メモリ | 193,144 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-24 12:45:38 |
合計ジャッジ時間 | 3,608 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 22 |
ソースコード
#define _GLIBCXX_DEBUG #define ll long long #include <bits/stdc++.h> using namespace std; using Graph = vector<vector<int>>; int main(){ int N; cin >> N; map<int, int> mp; for(int i = 1; i <= N; i++){ mp[N/i]++; } cout << mp.size() << endl; }