結果

問題 No.1446 ハンバーグと納豆ごはん
ユーザー LithopsLithops
提出日時 2021-03-26 23:33:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 2,966 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 54,172 KB
最終ジャッジ日時 2024-11-29 01:50:36
合計ジャッジ時間 8,513 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,984 KB
testcase_01 AC 114 ms
54,040 KB
testcase_02 AC 104 ms
53,008 KB
testcase_03 AC 121 ms
53,992 KB
testcase_04 AC 118 ms
54,076 KB
testcase_05 AC 118 ms
53,948 KB
testcase_06 AC 117 ms
54,096 KB
testcase_07 AC 116 ms
53,908 KB
testcase_08 AC 104 ms
52,708 KB
testcase_09 AC 105 ms
52,976 KB
testcase_10 AC 114 ms
53,848 KB
testcase_11 AC 123 ms
54,064 KB
testcase_12 AC 105 ms
53,084 KB
testcase_13 AC 114 ms
53,800 KB
testcase_14 AC 117 ms
54,160 KB
testcase_15 AC 120 ms
53,816 KB
testcase_16 AC 120 ms
54,060 KB
testcase_17 AC 104 ms
52,896 KB
testcase_18 AC 106 ms
52,624 KB
testcase_19 AC 123 ms
53,696 KB
testcase_20 AC 118 ms
53,668 KB
testcase_21 AC 99 ms
52,268 KB
testcase_22 AC 116 ms
54,000 KB
testcase_23 AC 115 ms
53,984 KB
testcase_24 AC 100 ms
53,016 KB
testcase_25 AC 114 ms
53,988 KB
testcase_26 AC 118 ms
53,748 KB
testcase_27 AC 107 ms
52,992 KB
testcase_28 AC 113 ms
54,172 KB
testcase_29 AC 119 ms
53,688 KB
testcase_30 AC 114 ms
54,036 KB
testcase_31 AC 118 ms
54,128 KB
testcase_32 AC 115 ms
53,744 KB
testcase_33 AC 104 ms
52,672 KB
testcase_34 AC 120 ms
53,872 KB
testcase_35 AC 109 ms
52,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
  public static void main(String[] args){
    Scanner sc = new Scanner(System.in);
    long A=sc.nextLong();
    long B=sc.nextLong();
    long N=sc.nextLong();
    long M=sc.nextLong();
    if(A>B){
      System.out.println(B+(A-B)/(N+1));
    }
    else{
      System.out.println(A+(B-A)/(M+1));
    }
  }
}
0