結果

問題 No.481 1から10
ユーザー jimanojimano
提出日時 2018-01-07 11:52:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 2,884 ms
コンパイル使用メモリ 74,188 KB
実行使用メモリ 54,140 KB
最終ジャッジ日時 2024-06-02 12:24:33
合計ジャッジ時間 4,715 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
52,684 KB
testcase_01 AC 117 ms
54,016 KB
testcase_02 AC 117 ms
54,140 KB
testcase_03 AC 116 ms
53,620 KB
testcase_04 AC 106 ms
52,804 KB
testcase_05 AC 120 ms
53,864 KB
testcase_06 AC 106 ms
53,140 KB
testcase_07 AC 123 ms
53,968 KB
testcase_08 AC 111 ms
52,484 KB
testcase_09 AC 117 ms
53,784 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 sum = IntStream.rangeClosed(1, 10).sum();// 1から10までの合計
		int num = sc.nextInt();//書いた数9個の合計

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

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