結果

問題 No.481 1から10
ユーザー hippolover02hippolover02
提出日時 2022-07-29 17:57:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 2,137 ms
コンパイル使用メモリ 77,816 KB
実行使用メモリ 54,184 KB
最終ジャッジ日時 2024-07-19 08:50:04
合計ジャッジ時間 3,969 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
52,900 KB
testcase_01 AC 131 ms
53,856 KB
testcase_02 AC 124 ms
54,036 KB
testcase_03 AC 126 ms
53,860 KB
testcase_04 AC 122 ms
54,184 KB
testcase_05 AC 110 ms
52,892 KB
testcase_06 AC 121 ms
53,932 KB
testcase_07 AC 121 ms
54,032 KB
testcase_08 AC 127 ms
54,016 KB
testcase_09 AC 121 ms
53,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main {
    public static void main(String[] args) {
        // 自分の得意な言語で
        // Let's チャレンジ!!
        Scanner sc = new Scanner(System.in);
        String[] line = sc.nextLine().split(" ");
        int[] arr = Arrays.stream(line).mapToInt(Integer::parseInt).toArray();
        int sum =0;
        for(int n: arr){
            sum += n;
        }
        System.out.println(55 - sum);
    }
}
0