結果

問題 No.63 ポッキーゲーム
ユーザー Lay_ecLay_ec
提出日時 2014-11-11 23:41:33
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 400 bytes
コンパイル時間 715 ms
コンパイル使用メモリ 71,644 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-24 04:41:34
合計ジャッジ時間 1,561 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream> 
#include <string> 
#include <vector> 
#include <cmath> 
#include <algorithm> 
#include <cstdlib> 
#include <ctime> 
#include <cstdio> 
#include <functional> 
#include <set> 
#include <sstream> 
#include <cctype>

using namespace std; 


int main(){

	long n,k;
	cin>>n>>k;

	long num=n/(2*k);
	if(n%(2*k)==0) num--;

	cout<<num*k<<endl;


	return 0;
}
0