結果

問題 No.481 1から10
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 06:43:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 1,860 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 41,412 KB
最終ジャッジ日時 2024-06-30 17:52:45
合計ジャッジ時間 3,679 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,144 KB
testcase_01 AC 122 ms
41,236 KB
testcase_02 AC 122 ms
41,412 KB
testcase_03 AC 125 ms
41,336 KB
testcase_04 AC 109 ms
41,376 KB
testcase_05 AC 108 ms
40,012 KB
testcase_06 AC 122 ms
41,188 KB
testcase_07 AC 121 ms
39,884 KB
testcase_08 AC 124 ms
40,440 KB
testcase_09 AC 111 ms
39,712 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