結果
| 問題 |
No.63 ポッキーゲーム
|
| コンテスト | |
| ユーザー |
dsytk7
|
| 提出日時 | 2019-07-24 10:22:19 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 467 bytes |
| コンパイル時間 | 1,463 ms |
| コンパイル使用メモリ | 165,516 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-27 19:56:04 |
| 合計ジャッジ時間 | 2,345 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int (i)=(0);(i)<(int)(n);++(i))
using ll = long long;
using P = pair<int, int>;
using namespace std;
int main() {
int L, K;
cin >> L >> K;
if (K*2 >= L or (L/(K*2)==1 and L%(K*2)==0)) {
cout << 0 << endl;
}
else {
if (L%(K*2) == 0) {
cout << K*(L/(K*2)-1) << endl;
}
else {
cout << K*(L/(K*2)) << endl;
}
}
}
dsytk7