結果

問題 No.369 足し間違い
ユーザー fal_rndfal_rnd
提出日時 2021-04-01 20:01:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 3,118 ms
コンパイル使用メモリ 74,048 KB
実行使用メモリ 58,056 KB
最終ジャッジ日時 2024-12-18 01:09:34
合計ジャッジ時間 5,305 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,828 KB
testcase_01 AC 125 ms
53,860 KB
testcase_02 AC 125 ms
54,044 KB
testcase_03 AC 134 ms
53,840 KB
testcase_04 AC 245 ms
57,944 KB
testcase_05 AC 189 ms
54,632 KB
testcase_06 AC 230 ms
58,056 KB
testcase_07 AC 243 ms
57,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
	static final Scanner s=new Scanner(System.in);

	public static void main(String[] $){
		int n=s.nextInt();
		int r=0;
		for(int i=0;i<n;++i)
			r+=s.nextInt();
		r-=s.nextInt();
		System.out.println(r);
	}
}
0