結果

問題 No.1828 Except 3
ユーザー ripityripity
提出日時 2022-03-16 22:24:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 408 ms / 2,000 ms
コード長 761 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 74,240 KB
実行使用メモリ 48,104 KB
最終ジャッジ日時 2024-09-25 01:22:22
合計ジャッジ時間 6,074 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 205 ms
44,296 KB
testcase_01 AC 408 ms
48,104 KB
testcase_02 AC 129 ms
41,236 KB
testcase_03 AC 127 ms
41,132 KB
testcase_04 AC 125 ms
41,604 KB
testcase_05 AC 119 ms
40,312 KB
testcase_06 AC 126 ms
41,176 KB
testcase_07 AC 126 ms
41,516 KB
testcase_08 AC 132 ms
41,620 KB
testcase_09 AC 130 ms
41,560 KB
testcase_10 AC 134 ms
41,324 KB
testcase_11 AC 140 ms
41,532 KB
testcase_12 AC 146 ms
41,840 KB
testcase_13 AC 173 ms
42,368 KB
testcase_14 AC 195 ms
43,108 KB
testcase_15 AC 205 ms
44,196 KB
testcase_16 AC 118 ms
40,396 KB
testcase_17 AC 128 ms
41,288 KB
testcase_18 AC 123 ms
41,252 KB
testcase_19 AC 126 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    
    public static Scanner sc = new Scanner(System.in);
    public static PrintWriter pw = new PrintWriter(System.out);
    
    public static void main(String[] args) {
        
        int t = 1;
        while( t > 0 ) {
            solve();
            t--;
        }
        
        pw.flush();
        
    }
    
    static void solve() {
        
        int N = sc.nextInt();
        long ans = 1;
        
        for( long i = 0, cnt = 0; i < 3*N; i++ ) {
            int x = sc.nextInt();
            if( x%3 != 0 ) cnt++;
            if( i%N == N-1 ) {
                ans *= cnt;
                cnt = 0;
            }
        }
        
        pw.println(ans);
        
    }
    
}
0