結果
| 問題 |
No.84 悪の算盤
|
| コンテスト | |
| ユーザー |
tetsuzuki1115
|
| 提出日時 | 2017-10-21 21:59:34 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 488 bytes |
| コンパイル時間 | 590 ms |
| コンパイル使用メモリ | 78,024 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-21 12:39:13 |
| 合計ジャッジ時間 | 1,251 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <math.h>
#include <cmath>
#include <limits.h>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <functional>
#include <stdio.h>
using namespace std;
long long MOD = 1000000007;
int main() {
long long R,C;
cin >> R >> C;
if ( R == C ) { cout << (R*C)/4 + (R%2 ? 1 : 0) - 1 << endl; }
else { cout << ( (R*C+1)/2 - 1 ) << endl; }
return 0;
}
tetsuzuki1115