結果

問題 No.84 悪の算盤
ユーザー ntudantuda
提出日時 2024-05-19 20:28:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 5,000 ms
コード長 101 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 53,264 KB
最終ジャッジ日時 2024-05-19 20:28:12
合計ジャッジ時間 1,855 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,108 KB
testcase_01 AC 31 ms
52,488 KB
testcase_02 AC 33 ms
51,956 KB
testcase_03 AC 34 ms
52,192 KB
testcase_04 AC 32 ms
52,752 KB
testcase_05 AC 32 ms
52,808 KB
testcase_06 AC 34 ms
52,752 KB
testcase_07 AC 33 ms
52,140 KB
testcase_08 AC 34 ms
52,272 KB
testcase_09 AC 31 ms
53,104 KB
testcase_10 AC 32 ms
52,340 KB
testcase_11 AC 32 ms
53,264 KB
testcase_12 AC 34 ms
52,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

0