結果

問題 No.1828 Except 3
ユーザー tentententen
提出日時 2022-02-12 20:53:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 1,351 bytes
コンパイル時間 1,833 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 42,008 KB
最終ジャッジ日時 2024-06-28 23:45:27
合計ジャッジ時間 3,886 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
38,732 KB
testcase_01 AC 134 ms
42,008 KB
testcase_02 AC 48 ms
37,124 KB
testcase_03 AC 48 ms
36,416 KB
testcase_04 AC 47 ms
36,828 KB
testcase_05 AC 48 ms
36,664 KB
testcase_06 AC 48 ms
37,036 KB
testcase_07 AC 47 ms
36,652 KB
testcase_08 AC 48 ms
36,672 KB
testcase_09 AC 48 ms
36,700 KB
testcase_10 AC 48 ms
36,872 KB
testcase_11 AC 49 ms
37,036 KB
testcase_12 AC 50 ms
36,968 KB
testcase_13 AC 53 ms
37,120 KB
testcase_14 AC 61 ms
37,784 KB
testcase_15 AC 87 ms
38,528 KB
testcase_16 AC 48 ms
36,952 KB
testcase_17 AC 51 ms
36,900 KB
testcase_18 AC 48 ms
36,412 KB
testcase_19 AC 49 ms
37,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long a = 0;
        for (int i = 0; i < n; i++) {
            if (sc.nextInt() % 3 != 0) {
                a++;
            }
        }
        long b = 0;
        for (int i = 0; i < n; i++) {
            if (sc.nextInt() % 3 != 0) {
                b++;
            }
        }
        long c = 0;
        for (int i = 0; i < n; i++) {
            if (sc.nextInt() % 3 != 0) {
                c++;
            }
        }
        System.out.println(a * b * c);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0