結果

問題 No.84 悪の算盤
ユーザー あかりきあかりき
提出日時 2021-02-08 13:27:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 48 bytes
コンパイル時間 1,018 ms
コンパイル使用メモリ 86,772 KB
実行使用メモリ 71,504 KB
最終ジャッジ日時 2023-09-19 03:27:48
合計ジャッジ時間 3,044 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
71,340 KB
testcase_01 AC 78 ms
71,136 KB
testcase_02 AC 79 ms
71,252 KB
testcase_03 AC 79 ms
71,244 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 79 ms
71,284 KB
testcase_08 AC 79 ms
71,336 KB
testcase_09 AC 80 ms
71,284 KB
testcase_10 AC 77 ms
71,504 KB
testcase_11 AC 79 ms
71,244 KB
testcase_12 AC 79 ms
71,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

r,c=map(int,input().split())
print((r*c+1)//2-1)
0