結果

問題 No.1594 Three Classes
ユーザー ripityripity
提出日時 2021-12-13 22:54:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 800 bytes
コンパイル時間 2,045 ms
コンパイル使用メモリ 74,688 KB
実行使用メモリ 45,340 KB
最終ジャッジ日時 2024-11-16 08:34:20
合計ジャッジ時間 6,089 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
45,132 KB
testcase_01 AC 127 ms
41,252 KB
testcase_02 AC 129 ms
41,000 KB
testcase_03 AC 143 ms
41,444 KB
testcase_04 AC 175 ms
45,232 KB
testcase_05 AC 165 ms
44,940 KB
testcase_06 AC 142 ms
41,312 KB
testcase_07 AC 142 ms
41,780 KB
testcase_08 AC 178 ms
45,340 KB
testcase_09 AC 175 ms
45,224 KB
testcase_10 AC 165 ms
45,224 KB
testcase_11 AC 169 ms
45,304 KB
testcase_12 AC 167 ms
44,984 KB
testcase_13 AC 127 ms
41,236 KB
testcase_14 AC 141 ms
44,292 KB
testcase_15 AC 147 ms
43,028 KB
testcase_16 AC 139 ms
41,464 KB
testcase_17 AC 144 ms
41,644 KB
testcase_18 AC 127 ms
41,220 KB
testcase_19 AC 129 ms
40,876 KB
testcase_20 AC 132 ms
41,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int[] E = new int[N];
        for( int i = 0; i < N; i++ ) {
            E[i] = sc.nextInt();
        }
        
        int lim = (int)Math.pow(3,N);
        for( int i = 0; i < lim; i++ ) {
            int state = i;
            int[] sum = new int[3];
            for( int j = 0; j < N; j++ ) {
                int d = state%3;
                state /= 3;
                sum[d] += E[j];
            }
            if( sum[0] == sum[1] && sum[1] == sum[2] ) {
                System.out.println("Yes");
                return;
            }
        }
        
        System.out.println("No");
        
    }
    
}
0