結果

問題 No.1828 Except 3
ユーザー AsahiAsahi
提出日時 2023-02-06 14:06:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 437 ms / 2,000 ms
コード長 1,142 bytes
コンパイル時間 2,357 ms
コンパイル使用メモリ 79,176 KB
実行使用メモリ 48,880 KB
最終ジャッジ日時 2024-07-04 18:37:27
合計ジャッジ時間 6,793 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 210 ms
44,400 KB
testcase_01 AC 437 ms
48,880 KB
testcase_02 AC 126 ms
41,156 KB
testcase_03 AC 130 ms
41,568 KB
testcase_04 AC 127 ms
41,384 KB
testcase_05 AC 128 ms
41,064 KB
testcase_06 AC 133 ms
41,672 KB
testcase_07 AC 130 ms
41,044 KB
testcase_08 AC 140 ms
41,212 KB
testcase_09 AC 132 ms
41,324 KB
testcase_10 AC 130 ms
41,596 KB
testcase_11 AC 141 ms
41,596 KB
testcase_12 AC 154 ms
41,736 KB
testcase_13 AC 181 ms
41,912 KB
testcase_14 AC 197 ms
43,376 KB
testcase_15 AC 208 ms
44,320 KB
testcase_16 AC 127 ms
41,168 KB
testcase_17 AC 128 ms
41,296 KB
testcase_18 AC 133 ms
41,176 KB
testcase_19 AC 131 ms
41,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
// import java.util.stream.Stream;

class Main{
    static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    static StringTokenizer st;
    static PrintWriter output = new PrintWriter(System.out);
    static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws IOException{
        int n = sc.nextInt();
        ArrayList<Long> A = new ArrayList<>();
        ArrayList<Long> B = new ArrayList<>();
        ArrayList<Long> C = new ArrayList<>();
        for(int i=0;i<n;i++) {
            long v = sc.nextLong();
            if(v % 3 == 0) continue;
            A.add(v);
        }
        for(int i=0;i<n;i++) {
            long v = sc.nextLong();
            if(v % 3 == 0) continue;
            B.add(v);
        }
        for(int i=0;i<n;i++) {
            long v = sc.nextLong();
            if(v % 3 == 0) continue;
            C.add(v);
        }
        long ans = 0;
        for(int i=0;i<A.size();i++) {
            ans += B.size()*C.size();
        }
        output.print(ans);
        output.flush();
    }
}
0