結果

問題 No.63 ポッキーゲーム
ユーザー IdeDaisukeIdeDaisuke
提出日時 2020-04-10 18:48:20
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 323 bytes
コンパイル時間 1,516 ms
コンパイル使用メモリ 165,280 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 08:06:40
合計ジャッジ時間 2,263 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 - 1) / twobite;
    int ans = bited_cnt * K;
    cout << ans << endl;
}
0