結果

問題 No.1594 Three Classes
ユーザー ripityripity
提出日時 2021-12-13 22:51:49
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 888 bytes
コンパイル時間 2,355 ms
コンパイル使用メモリ 74,960 KB
実行使用メモリ 92,460 KB
最終ジャッジ日時 2024-07-22 22:28:20
合計ジャッジ時間 28,335 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,801 ms
80,136 KB
testcase_01 AC 142 ms
41,588 KB
testcase_02 AC 139 ms
41,024 KB
testcase_03 AC 295 ms
51,924 KB
testcase_04 TLE -
testcase_05 AC 1,950 ms
91,912 KB
testcase_06 AC 340 ms
53,868 KB
testcase_07 AC 390 ms
54,532 KB
testcase_08 AC 1,930 ms
91,760 KB
testcase_09 TLE -
testcase_10 AC 1,891 ms
79,536 KB
testcase_11 AC 1,986 ms
92,460 KB
testcase_12 AC 1,750 ms
78,976 KB
testcase_13 AC 156 ms
41,528 KB
testcase_14 AC 771 ms
74,520 KB
testcase_15 AC 1,139 ms
68,044 KB
testcase_16 AC 551 ms
66,380 KB
testcase_17 AC 1,353 ms
91,612 KB
testcase_18 AC 143 ms
41,716 KB
testcase_19 AC 227 ms
47,468 KB
testcase_20 AC 272 ms
51,320 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++ ) {
            String state = String.format("%-13s",Integer.toString(i,3)).replace(" ","0");
            char[] c = state.toCharArray();
            int[] sum = new int[3];
            for( int j = 0; j < N; j++ ) {
                int index = c[j]-'0';
                sum[index] += E[j];
            }
            if( sum[0] == sum[1] && sum[1] == sum[2] ) {
                System.out.println("Yes");
                return;
            }
        }
        
        System.out.println("No");
        
    }
    
}
0