結果
問題 |
No.63 ポッキーゲーム
|
ユーザー |
![]() |
提出日時 | 2015-12-26 19:20:00 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 224 bytes |
コンパイル時間 | 1,090 ms |
コンパイル使用メモリ | 159,556 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-19 00:36:26 |
合計ジャッジ時間 | 1,773 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 15 WA * 7 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ long long int l,k; cin >> l >> k; if(l == k * 2) cout << 0 << endl; else if((l/2) % k == 0) cout << l / 2 - k << endl; else cout << (l / 2) / k * k << endl; }