結果

問題 No.84 悪の算盤
ユーザー nebukuro09nebukuro09
提出日時 2016-11-01 17:02:44
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 187 bytes
コンパイル時間 1,015 ms
コンパイル使用メモリ 77,064 KB
実行使用メモリ 83,880 KB
最終ジャッジ日時 2024-05-03 20:40:23
合計ジャッジ時間 13,753 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,292 KB
testcase_01 AC 75 ms
75,548 KB
testcase_02 AC 76 ms
75,768 KB
testcase_03 AC 75 ms
75,328 KB
testcase_04 AC 75 ms
75,424 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 76 ms
75,764 KB
testcase_08 AC 78 ms
75,308 KB
testcase_09 AC 76 ms
75,292 KB
testcase_10 AC 75 ms
75,952 KB
testcase_11 AC 75 ms
75,304 KB
testcase_12 AC 76 ms
75,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R, C = map(int, raw_input().split())
if R == C:
    print sum(max(i-1, 1) for i in xrange(2-R%2, R+1, 2))-1
else:
    if R > C:
        R, C = C, R
    print C*(R/2) + (R%2)*(C/2+C%2) -1
0