結果

問題 No.481 1から10
ユーザー 37zigen37zigen
提出日時 2017-02-11 12:27:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 4,491 ms
コンパイル使用メモリ 71,748 KB
実行使用メモリ 56,100 KB
最終ジャッジ日時 2023-08-28 12:50:00
合計ジャッジ時間 4,074 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
55,476 KB
testcase_01 AC 125 ms
53,440 KB
testcase_02 AC 126 ms
55,664 KB
testcase_03 AC 126 ms
55,816 KB
testcase_04 AC 127 ms
55,664 KB
testcase_05 AC 128 ms
55,688 KB
testcase_06 AC 127 ms
56,100 KB
testcase_07 AC 127 ms
55,792 KB
testcase_08 AC 128 ms
55,740 KB
testcase_09 AC 128 ms
55,788 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