結果

問題 No.84 悪の算盤
ユーザー rlangevinrlangevin
提出日時 2023-01-16 08:53:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 221 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 86,884 KB
実行使用メモリ 71,360 KB
最終ジャッジ日時 2023-08-28 21:52:16
合計ジャッジ時間 2,174 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,076 KB
testcase_01 AC 70 ms
71,060 KB
testcase_02 AC 70 ms
71,060 KB
testcase_03 AC 70 ms
71,160 KB
testcase_04 AC 69 ms
71,232 KB
testcase_05 AC 68 ms
71,320 KB
testcase_06 AC 69 ms
71,200 KB
testcase_07 AC 70 ms
71,128 KB
testcase_08 AC 70 ms
71,200 KB
testcase_09 AC 71 ms
71,360 KB
testcase_10 AC 69 ms
71,268 KB
testcase_11 AC 70 ms
71,136 KB
testcase_12 AC 69 ms
70,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R, C = map(int, input().split())
if R == C:
    if R % 2:
        print((R * C - 1)//4)
    else:
        print(R * C // 4 - 1)
else:
    if R * C % 2:
        print((R * C - 1)//2)
    else:
        print(R * C // 2 - 1)
0