結果

問題 No.1828 Except 3
ユーザー Meso Meso
提出日時 2024-07-12 19:33:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-12 19:33:10
合計ジャッジ時間 2,403 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = [int(x) for x in input().split() if int(x) % 3 != 0]
B = [int(x) for x in input().split() if int(x) % 3 != 0]
C = [int(x) for x in input().split() if int(x) % 3 != 0]

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