結果

問題 No.560 ふしぎなナップサック
ユーザー tetsutetsu
提出日時 2017-08-26 01:15:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 3,797 ms
コンパイル使用メモリ 78,308 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-10-15 16:22:41
合計ジャッジ時間 5,378 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,184 KB
testcase_01 AC 107 ms
39,808 KB
testcase_02 AC 113 ms
40,984 KB
testcase_03 AC 100 ms
40,092 KB
testcase_04 AC 105 ms
39,676 KB
testcase_05 AC 124 ms
41,120 KB
testcase_06 AC 107 ms
39,976 KB
testcase_07 AC 115 ms
40,980 KB
testcase_08 AC 117 ms
41,108 KB
testcase_09 AC 114 ms
40,860 KB
testcase_10 AC 117 ms
41,152 KB
testcase_11 AC 106 ms
40,076 KB
testcase_12 AC 118 ms
41,588 KB
testcase_13 AC 118 ms
40,868 KB
testcase_14 AC 118 ms
41,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yuki172;

import java.util.Scanner;

public class C {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		int M = sc.nextInt();
		int N = sc.nextInt();
		sc.close();
		System.out.println(M+((double)N)/3);
	}

}
0