結果

問題 No.481 1から10
ユーザー jimanojimano
提出日時 2018-01-07 11:52:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 3,288 ms
コンパイル使用メモリ 75,392 KB
実行使用メモリ 41,824 KB
最終ジャッジ日時 2024-06-02 12:24:58
合計ジャッジ時間 4,776 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,076 KB
testcase_01 AC 113 ms
41,824 KB
testcase_02 AC 101 ms
41,224 KB
testcase_03 AC 113 ms
41,076 KB
testcase_04 AC 115 ms
41,404 KB
testcase_05 AC 112 ms
40,020 KB
testcase_06 AC 110 ms
40,288 KB
testcase_07 AC 110 ms
40,128 KB
testcase_08 AC 114 ms
41,176 KB
testcase_09 AC 114 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.IntStream;

public class No0481 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int num = sc.nextInt();//書いた数9個の合計

		while (sc.hasNext()) {
			num += sc.nextInt();
		}

		System.out.println(55 - num);
	}
}
0