結果

問題 No.481 1から10
ユーザー HEGO55HEGO55
提出日時 2017-05-09 01:51:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 41,504 KB
最終ジャッジ日時 2024-09-14 17:44:29
合計ジャッジ時間 4,019 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,372 KB
testcase_01 AC 120 ms
41,448 KB
testcase_02 AC 131 ms
41,052 KB
testcase_03 AC 130 ms
41,324 KB
testcase_04 AC 117 ms
39,872 KB
testcase_05 AC 130 ms
41,016 KB
testcase_06 AC 131 ms
41,196 KB
testcase_07 AC 131 ms
41,248 KB
testcase_08 AC 130 ms
41,504 KB
testcase_09 AC 130 ms
41,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Test24{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int[] num = new int[9];
		int sum = 0;
		
		for(int i=0; i<num.length; i++){
			num[i]= sc.nextInt();
			sum += num[i];
		}
		
		System.out.println(55-sum);
	}
}
				
0