結果
問題 | No.63 ポッキーゲーム |
ユーザー |
|
提出日時 | 2020-04-10 18:02:20 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 470 bytes |
コンパイル時間 | 1,658 ms |
コンパイル使用メモリ | 165,192 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-15 07:05:42 |
合計ジャッジ時間 | 2,355 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 18 WA * 4 |
ソースコード
#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^9int main() {// ifstream in("data1.txt");// cin.rdbuf(in.rdbuf());int L, K;cin >> L >> K;int twobite = K * 2;int bited_cnt = L / twobite;if(L % twobite == 0) {cout << bited_cnt - 1 << endl;return 0;}int ans = bited_cnt * K;cout << ans << endl;}