結果
| 問題 |
No.63 ポッキーゲーム
|
| コンテスト | |
| ユーザー |
lice6613
|
| 提出日時 | 2019-04-30 11:46:53 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 176 bytes |
| コンパイル時間 | 2,009 ms |
| コンパイル使用メモリ | 166,596 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-29 14:32:34 |
| 合計ジャッジ時間 | 2,577 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
int L, K;
cin >> L >> K;
int ans = L / (2 * K) * K;
if (2 * ans == L)
ans -= K;
cout << ans << endl;
}
lice6613