結果
問題 |
No.63 ポッキーゲーム
|
ユーザー |
![]() |
提出日時 | 2017-04-08 08:08:56 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 228 bytes |
コンパイル時間 | 518 ms |
コンパイル使用メモリ | 62,592 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-24 05:26:15 |
合計ジャッジ時間 | 1,378 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 |
ソースコード
#include <iostream> using namespace std; int main(){ int l,k,num; scanf("%d %d",&l,&k); if(l%(k*2)!=0){ num = l/(k*2); cout << num * k << endl; } else{ num = l/(k*2); cout << (num - 1) * k << endl; } return 0; }