結果

問題 No.560 ふしぎなナップサック
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-07 21:20:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 3,147 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 54,068 KB
最終ジャッジ日時 2024-11-17 04:37:30
合計ジャッジ時間 5,911 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
52,764 KB
testcase_01 AC 120 ms
53,820 KB
testcase_02 AC 124 ms
53,872 KB
testcase_03 AC 119 ms
53,712 KB
testcase_04 AC 124 ms
54,012 KB
testcase_05 AC 126 ms
53,924 KB
testcase_06 AC 130 ms
54,048 KB
testcase_07 AC 124 ms
53,984 KB
testcase_08 AC 124 ms
53,892 KB
testcase_09 AC 131 ms
53,804 KB
testcase_10 AC 124 ms
53,824 KB
testcase_11 AC 110 ms
52,728 KB
testcase_12 AC 124 ms
54,048 KB
testcase_13 AC 123 ms
54,068 KB
testcase_14 AC 122 ms
53,480 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