結果

問題 No.2835 Take and Flip
ユーザー fiblonariafiblonaria
提出日時 2024-08-15 04:16:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 797 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 3,349 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 60,320 KB
最終ジャッジ日時 2024-08-15 04:17:12
合計ジャッジ時間 17,714 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,100 KB
testcase_01 AC 126 ms
41,280 KB
testcase_02 AC 122 ms
41,156 KB
testcase_03 AC 733 ms
58,276 KB
testcase_04 AC 706 ms
60,320 KB
testcase_05 AC 119 ms
41,268 KB
testcase_06 AC 721 ms
54,596 KB
testcase_07 AC 715 ms
54,496 KB
testcase_08 AC 685 ms
53,212 KB
testcase_09 AC 746 ms
57,980 KB
testcase_10 AC 797 ms
56,040 KB
testcase_11 AC 724 ms
57,848 KB
testcase_12 AC 754 ms
57,596 KB
testcase_13 AC 777 ms
55,804 KB
testcase_14 AC 563 ms
48,800 KB
testcase_15 AC 115 ms
41,524 KB
testcase_16 AC 588 ms
50,704 KB
testcase_17 AC 285 ms
47,552 KB
testcase_18 AC 696 ms
52,424 KB
testcase_19 AC 708 ms
55,084 KB
testcase_20 AC 535 ms
48,544 KB
testcase_21 AC 724 ms
53,868 KB
testcase_22 AC 603 ms
50,800 KB
testcase_23 AC 467 ms
48,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class OptimalGame {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int n = scanner.nextInt();
        int[] A = new int[n];
        for (int i = 0; i < n; i++) {
            A[i] = scanner.nextInt();
        }
        long sum = 0;
        for (int i = 0; i < n; i++) {
            sum += A[i];
        }
        System.out.println(sum);
        
        scanner.close();
    }
}
0