結果

問題 No.84 悪の算盤
ユーザー flippergoflippergo
提出日時 2024-11-04 15:31:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 241 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 53,684 KB
最終ジャッジ日時 2024-11-04 15:31:25
合計ジャッジ時間 1,909 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,320 KB
testcase_01 AC 37 ms
52,484 KB
testcase_02 AC 36 ms
53,684 KB
testcase_03 AC 36 ms
52,404 KB
testcase_04 AC 36 ms
52,268 KB
testcase_05 AC 36 ms
53,536 KB
testcase_06 AC 38 ms
51,872 KB
testcase_07 AC 36 ms
52,676 KB
testcase_08 AC 36 ms
52,704 KB
testcase_09 AC 36 ms
52,884 KB
testcase_10 AC 35 ms
52,392 KB
testcase_11 AC 47 ms
52,428 KB
testcase_12 AC 36 ms
52,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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