結果
| 問題 | No.477 MVP |
| コンテスト | |
| ユーザー |
focus
|
| 提出日時 | 2018-02-17 00:09:32 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 155 bytes |
| 記録 | |
| コンパイル時間 | 332 ms |
| コンパイル使用メモリ | 77,512 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2026-03-08 03:27:48 |
| 合計ジャッジ時間 | 963 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 11 |
ソースコード
#include<iostream>
#include<cmath>
using namespace std;
int main(){
unsigned long long N,K,ans;
cin >> N >> K;
cout << N/K+1;
return 0;
}
focus