結果
問題 | No.84 悪の算盤 |
ユーザー | dgd1724 |
提出日時 | 2016-10-09 18:30:02 |
言語 | C++11 (gcc 11.4.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
ソースコード
#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; }