結果

問題 No.481 1から10
ユーザー kuramubonn
提出日時 2023-02-01 21:44:00
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 41,332 KB
最終ジャッジ日時 2024-07-01 14:54:05
合計ジャッジ時間 4,000 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int total = 0;
		for(int i = 0 ; i < 9 ; i++)total += sc.nextInt();
		System.out.println(55 - total);
	}
}
0