結果
| 問題 | No.63 ポッキーゲーム |
| コンテスト | |
| ユーザー |
hamray
|
| 提出日時 | 2017-11-17 03:34:51 |
| 言語 | C++11(廃止可能性あり) (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 692 bytes |
| 記録 | |
| コンパイル時間 | 542 ms |
| コンパイル使用メモリ | 72,320 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-11-25 07:24:02 |
| 合計ジャッジ時間 | 1,853 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 WA * 2 |
ソースコード
#include<iostream>
#include<iomanip>
#include<cmath>
#include<string>
#include<algorithm>
#include<vector>
#include<math.h>
#include<stack>
using namespace std;
int main(void){
long L, K; cin >> L >> K;
long leng; int cnt = 0;
if(L % 2 != 0) {
leng = (L+1) / 2;
while(true){
if(leng < K) break;
leng -= K;
cnt++;
}
if(L % K != 0){
cout << cnt * K << endl;
}else{
cout << (cnt-1) * K << endl;
}
}else{
leng = L/2;
while(true){
if(leng <= K) break;
leng -= K;
cnt++;
}
cout << cnt * K << endl;
}
return 0;
}
hamray