結果

問題 No.63 ポッキーゲーム
ユーザー ieneko18
提出日時 2016-10-19 14:33:26
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 148 bytes
コンパイル時間 1,297 ms
コンパイル使用メモリ 157,408 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-22 16:26:19
合計ジャッジ時間 2,138 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
  int l,k;
  cin>>l>>k;
  int t=l/k/2;
  if(l/2%k==0)t--;
  cout<<k*t<<endl;
  return 0;
}
0