結果
問題 | No.63 ポッキーゲーム |
ユーザー |
|
提出日時 | 2018-01-01 23:52:45 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 233 bytes |
コンパイル時間 | 525 ms |
コンパイル使用メモリ | 62,848 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-24 05:50:49 |
合計ジャッジ時間 | 1,405 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 |
ソースコード
#include <iostream> using namespace std; int main() { int L, K; cin >> L >> K; int cut, rest; cut = L / (2*K); rest = L % (2*K); if (rest == 0){ cout << (cut -1)*K << endl; } else { cout << cut * K << endl; } return 0; }