結果

問題 No.84 悪の算盤
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-06 10:19:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 495 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 74,164 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-10-13 08:48:03
合計ジャッジ時間 4,422 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,112 KB
testcase_01 AC 115 ms
40,060 KB
testcase_02 AC 127 ms
41,420 KB
testcase_03 AC 127 ms
41,092 KB
testcase_04 AC 127 ms
41,284 KB
testcase_05 AC 129 ms
41,444 KB
testcase_06 AC 127 ms
41,396 KB
testcase_07 AC 129 ms
41,240 KB
testcase_08 AC 127 ms
41,360 KB
testcase_09 AC 132 ms
41,180 KB
testcase_10 AC 133 ms
40,968 KB
testcase_11 AC 133 ms
41,312 KB
testcase_12 AC 130 ms
41,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
       long r = koko.nextLong();
       long k = koko.nextLong();
       long a;
       if(k==r&&k%2==0){
           a = r*k/4;
       }else if(k==r&&k%2!=0){
           a = 1+(r*k-1)/4;
       }else if(k!=r&&k%2!=0&&r%2!=0){
           a = 1+(r*k-1)/2;
       }else{
           a = r*k/2;
       }
       System.out.println(a-1);
    }
}
0