結果
問題 |
No.63 ポッキーゲーム
|
ユーザー |
![]() |
提出日時 | 2017-11-17 03:19:30 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 384 bytes |
コンパイル時間 | 560 ms |
コンパイル使用メモリ | 72,460 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-25 07:23:01 |
合計ジャッジ時間 | 1,884 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 WA * 5 |
ソースコード
#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 = L /2 + 1; int cnt = 0; while(true){ if(leng <= K + 1) break; leng -= K; cnt++; } cout << cnt * K << endl; return 0; }