結果

問題 No.63 ポッキーゲーム
ユーザー RCCW
提出日時 2017-02-02 18:38:02
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 199 ms / 5,000 ms
コード長 232 bytes
コンパイル時間 1,389 ms
コンパイル使用メモリ 157,692 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-24 05:22:04
合計ジャッジ時間 2,880 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <iostream>
#include <string>
using namespace std;

int main() {
long long l,k,kk=0;
cin>>l>>k;

if(l<=k+k){
	cout<<0<<endl;
	return 0;
}

while(l>k*2+kk){
kk=kk+k*2;
}
cout<<kk/2<<endl;

}

#950832
0