結果
| 問題 | No.63 ポッキーゲーム |
| コンテスト | |
| ユーザー |
dsytk7
|
| 提出日時 | 2019-07-24 10:22:19 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| + 414µs | |
| コード長 | 467 bytes |
| 記録 | |
| コンパイル時間 | 881 ms |
| コンパイル使用メモリ | 178,700 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-31 09:38:29 |
| 合計ジャッジ時間 | 2,386 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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