結果

問題 No.560 ふしぎなナップサック
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-07 21:20:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 3,558 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-04-28 12:53:32
合計ジャッジ時間 6,479 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,036 KB
testcase_01 AC 138 ms
41,432 KB
testcase_02 AC 135 ms
40,988 KB
testcase_03 AC 133 ms
41,036 KB
testcase_04 AC 135 ms
41,112 KB
testcase_05 AC 132 ms
41,560 KB
testcase_06 AC 131 ms
41,188 KB
testcase_07 AC 132 ms
41,396 KB
testcase_08 AC 130 ms
41,240 KB
testcase_09 AC 133 ms
41,148 KB
testcase_10 AC 133 ms
41,444 KB
testcase_11 AC 121 ms
40,408 KB
testcase_12 AC 132 ms
41,036 KB
testcase_13 AC 131 ms
41,220 KB
testcase_14 AC 132 ms
41,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No560 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int m = sc.nextInt();
        int n = sc.nextInt();
        double result = m + n / 3.0;
        System.out.println(result);
    }
}
0