結果

問題 No.481 1から10
ユーザー heyanxxheyanxx
提出日時 2019-07-04 11:31:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 671 bytes
コンパイル時間 2,874 ms
コンパイル使用メモリ 74,572 KB
実行使用メモリ 37,100 KB
最終ジャッジ日時 2024-09-19 03:54:08
合計ジャッジ時間 3,675 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,980 KB
testcase_01 AC 44 ms
37,092 KB
testcase_02 AC 43 ms
37,068 KB
testcase_03 AC 44 ms
36,976 KB
testcase_04 AC 44 ms
36,824 KB
testcase_05 AC 45 ms
37,056 KB
testcase_06 AC 45 ms
37,100 KB
testcase_07 AC 46 ms
36,700 KB
testcase_08 AC 46 ms
37,080 KB
testcase_09 AC 47 ms
36,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test.demo;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Youkicoder481 {

	public static void main(String[] args) {
		try {
			String[]str=input();
			int sum=0;
			for(int i=0;i<str.length;i++) {
				sum+=Integer.parseInt(str[i]);
			}
			System.out.println(55-sum);
			
		} catch (IOException e) {
			// TODO 自動生成された catch ブロック
			e.printStackTrace();
		}
		

	}
	public static  String[] input() throws IOException {
		BufferedReader br =new BufferedReader(new InputStreamReader(System.in));
		
		String str=br.readLine();
		String[]str2=str.split(" ");
		
		return str2;
	}
}
0