結果
| 問題 | No.84 悪の算盤 |
| コンテスト | |
| ユーザー |
dgd1724
|
| 提出日時 | 2016-10-09 18:30:02 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 590 bytes |
| コンパイル時間 | 1,266 ms |
| コンパイル使用メモリ | 159,032 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-13 08:58:51 |
| 合計ジャッジ時間 | 1,653 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
#include <bits/stdc++.h>
const static double de_PI = 3.14159265358979323846;
const static int de_MOD = 1000000007;
const static int de_MAX = 999999999;
const static int de_MIN = -999999999;
int main(void) {
//std::ifstream in("123.txt"); std::cin.rdbuf(in.rdbuf());
unsigned long long R = 0, C = 0, ans = 0;
std::cin >> R >> C;
if (R == C) {
if (R % 2 == 0) {
ans = R*R / 4 - 1;
}
else {
ans = (R*R + 3) / 4 - 1;
}
}
else {
if (R % 2 == 0 || C % 2 == 0) {
ans = R*C / 2 - 1;
}
else {
ans = (R*C + 1) / 2 - 1;
}
}
std::cout << ans << std::endl;
}
dgd1724