結果

問題 No.481 1から10
ユーザー papipenpapipen
提出日時 2017-03-27 20:05:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 3,366 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 55,924 KB
最終ジャッジ日時 2024-07-06 12:18:09
合計ジャッジ時間 3,805 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
52,912 KB
testcase_01 AC 109 ms
54,000 KB
testcase_02 AC 129 ms
53,832 KB
testcase_03 AC 127 ms
53,976 KB
testcase_04 AC 123 ms
55,924 KB
testcase_05 AC 121 ms
53,816 KB
testcase_06 AC 122 ms
53,868 KB
testcase_07 AC 127 ms
53,672 KB
testcase_08 AC 120 ms
53,712 KB
testcase_09 AC 124 ms
53,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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