結果

問題 No.1828 Except 3
ユーザー 👑 Kazun
提出日時 2022-02-01 20:17:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 65,792 KB
最終ジャッジ日時 2024-06-11 09:12:39
合計ジャッジ時間 1,760 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(X):
    k=0
    for x in X:
        if x%3!=0:
            k+=1
    return k

N=int(input())

A=list(map(int,input().split()))
B=list(map(int,input().split()))
C=list(map(int,input().split()))

print(f(A)*f(B)*f(C))
0