結果

問題 No.481 1から10
ユーザー 37zigen37zigen
提出日時 2017-02-11 12:27:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 2,262 ms
コンパイル使用メモリ 74,576 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-06-09 08:11:03
合計ジャッジ時間 4,407 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,316 KB
testcase_01 AC 136 ms
41,444 KB
testcase_02 AC 132 ms
41,288 KB
testcase_03 AC 137 ms
41,144 KB
testcase_04 AC 134 ms
41,068 KB
testcase_05 AC 133 ms
41,456 KB
testcase_06 AC 145 ms
40,244 KB
testcase_07 AC 134 ms
41,408 KB
testcase_08 AC 118 ms
40,204 KB
testcase_09 AC 130 ms
41,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static int N;
	static int[] A;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long sum = 0;
		for (int i = 0; i < 9; ++i)
			sum += sc.nextLong();
		System.out.println(55 - sum);
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0