結果
問題 | No.63 ポッキーゲーム |
ユーザー |
![]() |
提出日時 | 2015-10-31 10:56:10 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 173 ms / 5,000 ms |
コード長 | 241 bytes |
コンパイル時間 | 440 ms |
コンパイル使用メモリ | 54,004 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-24 04:56:28 |
合計ジャッジ時間 | 1,691 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 |
ソースコード
#include<iostream>#include<stdio.h>using namespace std;int main(){int l, k;cin>> l>> k;int cnt = 0;while(l>0){l -= k*2;cnt++;}if(cnt!=0) cnt--;cout<< cnt*k<< endl;return 0;}