結果
問題 | No.63 ポッキーゲーム |
ユーザー |
|
提出日時 | 2022-11-21 23:53:05 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 202 bytes |
コンパイル時間 | 513 ms |
コンパイル使用メモリ | 63,892 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 13:09:32 |
合計ジャッジ時間 | 1,426 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 15 WA * 7 |
ソースコード
#include <iostream> using namespace std; int main() { int L, K; cin >> L >> K; if (L == (K * 2)) { cout << 0; return 0; } cout << (L / (K * 2)) * K ; return 0; }