結果
問題 | No.63 ポッキーゲーム |
ユーザー | Mizuno |
提出日時 | 2024-09-29 10:19:11 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 485 bytes |
コンパイル時間 | 656 ms |
コンパイル使用メモリ | 77,968 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-09-29 10:19:13 |
合計ジャッジ時間 | 1,545 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 8 WA * 14 |
ソースコード
#include <iostream> #include <math.h> #include <algorithm> #include <map> #include <vector> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define dRep(i, d, n) for (int i = d; i < (int)(n); i++) #define forEach(arr) for (auto& it:arr) int main(void){ float a,b; string s; cin >> a >> b; // cin >> s; int n = (ceil(a / b) - 1) / 2; cout << n * b; // cout << a / (b * 2) * b; }