結果

問題 No.481 1から10
ユーザー jimanojimano
提出日時 2018-01-07 11:52:00
言語 Java
(openjdk 23)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 3,746 ms
コンパイル使用メモリ 75,100 KB
実行使用メモリ 41,576 KB
最終ジャッジ日時 2024-12-23 09:56:02
合計ジャッジ時間 4,993 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,336 KB
testcase_01 AC 121 ms
40,132 KB
testcase_02 AC 124 ms
40,056 KB
testcase_03 AC 120 ms
40,288 KB
testcase_04 AC 114 ms
41,448 KB
testcase_05 AC 120 ms
41,216 KB
testcase_06 AC 126 ms
41,232 KB
testcase_07 AC 110 ms
40,888 KB
testcase_08 AC 119 ms
41,344 KB
testcase_09 AC 111 ms
41,576 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