結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
37,824 KB
testcase_01 AC 62 ms
37,892 KB
testcase_02 AC 64 ms
37,756 KB
testcase_03 AC 62 ms
37,668 KB
testcase_04 AC 62 ms
37,584 KB
testcase_05 AC 63 ms
37,980 KB
testcase_06 AC 61 ms
37,660 KB
testcase_07 AC 63 ms
37,608 KB
testcase_08 AC 62 ms
38,112 KB
testcase_09 AC 65 ms
37,528 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