結果

問題 No.481 1から10
ユーザー yuuki121yuuki121
提出日時 2020-12-30 13:33:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 2,939 ms
コンパイル使用メモリ 79,072 KB
実行使用メモリ 51,116 KB
最終ジャッジ日時 2024-10-07 05:55:55
合計ジャッジ時間 3,672 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
50,960 KB
testcase_01 AC 68 ms
51,060 KB
testcase_02 AC 68 ms
50,964 KB
testcase_03 AC 68 ms
51,040 KB
testcase_04 AC 68 ms
51,116 KB
testcase_05 AC 68 ms
51,016 KB
testcase_06 AC 65 ms
50,612 KB
testcase_07 AC 67 ms
50,956 KB
testcase_08 AC 77 ms
51,016 KB
testcase_09 AC 67 ms
50,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.stream.Stream;

public class Main {

	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		int sum = Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).sum();

		System.out.println(55 - sum);

	}

}
0