結果
問題 | No.63 ポッキーゲーム |
ユーザー |
![]() |
提出日時 | 2022-11-09 11:16:11 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 568 ms / 5,000 ms |
コード長 | 269 bytes |
コンパイル時間 | 2,260 ms |
コンパイル使用メモリ | 157,020 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-22 17:28:17 |
合計ジャッジ時間 | 4,954 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <ios> #include <iomanip> #include <iostream> #include <string> #include <algorithm> int main(){ int a, b; cin >> a >> b; for(int i=0; ;i++){ if(a <= b*2*i){ cout << (i-1)*b; break; } } }