結果

問題 No.481 1から10
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 06:43:01
言語 Java19
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 71,716 KB
実行使用メモリ 56,292 KB
最終ジャッジ日時 2023-09-13 07:51:18
合計ジャッジ時間 3,814 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
55,916 KB
testcase_01 AC 121 ms
56,148 KB
testcase_02 AC 121 ms
56,292 KB
testcase_03 AC 120 ms
55,892 KB
testcase_04 AC 119 ms
55,848 KB
testcase_05 AC 123 ms
56,292 KB
testcase_06 AC 120 ms
56,236 KB
testcase_07 AC 118 ms
56,192 KB
testcase_08 AC 117 ms
54,408 KB
testcase_09 AC 118 ms
55,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no481{
	public static void main(String[] agrs) {
		Scanner stdIn=new Scanner(System.in);
		int s=0,i;
		for(i=0;i<9;i++) s+=stdIn.nextInt();
		System.out.print(55-s);
	}
}
0