結果

問題 No.63 ポッキーゲーム
ユーザー IdeDaisuke
提出日時 2020-04-10 18:06:48
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 411 bytes
コンパイル時間 1,718 ms
コンパイル使用メモリ 165,252 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 07:11:49
合計ジャッジ時間 2,587 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
typedef long long ll;
const int INF = 1000000000; // 10^9
int main() {
    int L, K;
    cin >> L >> K;
    int twobite = K * 2;
    int bited_cnt = L / twobite;
    if(L % twobite == 0) {
        cout << K * bited_cnt - K << endl;
        return 0;
    }
    int ans = bited_cnt * K;
    cout << ans << endl;
}
0