結果
問題 | No.477 MVP |
ユーザー | autumn-eel |
提出日時 | 2017-01-27 22:24:38 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 303 bytes |
コンパイル時間 | 1,729 ms |
コンパイル使用メモリ | 165,532 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-23 16:04:22 |
合計ジャッジ時間 | 2,361 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 12 |
ソースコード
#include<bits/stdc++.h> #define MOD 1000000007 #define INF 0x3f3f3f3f #define INFL 0x3f3f3f3f3f3f3f3f #define EPS (1e-10) #define rep(i,n)for(int i=0;i<(n);i++) using namespace std; typedef long long ll; typedef pair<int, int>P; int main() { ll n, k; cin >> n >> k; cout << n / (k + 1) + 1 << endl; }