結果

問題 No.1828 Except 3
ユーザー 330Xs330Xs
提出日時 2022-02-05 12:22:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 72,192 KB
最終ジャッジ日時 2024-06-11 13:27:35
合計ジャッジ時間 1,866 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,440 KB
testcase_01 AC 58 ms
72,192 KB
testcase_02 AC 39 ms
53,504 KB
testcase_03 AC 39 ms
53,504 KB
testcase_04 AC 39 ms
53,376 KB
testcase_05 AC 38 ms
53,248 KB
testcase_06 AC 38 ms
53,632 KB
testcase_07 AC 39 ms
53,376 KB
testcase_08 AC 42 ms
53,248 KB
testcase_09 AC 38 ms
53,376 KB
testcase_10 AC 39 ms
53,888 KB
testcase_11 AC 39 ms
53,120 KB
testcase_12 AC 39 ms
54,016 KB
testcase_13 AC 41 ms
54,144 KB
testcase_14 AC 46 ms
60,672 KB
testcase_15 AC 47 ms
61,824 KB
testcase_16 AC 40 ms
53,760 KB
testcase_17 AC 39 ms
53,760 KB
testcase_18 AC 38 ms
53,632 KB
testcase_19 AC 38 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
c = list(map(int,input().split()))

a_3 = list(map(lambda x:x % 3,a))
b_3 = list(map(lambda x:x % 3,b))
c_3 = list(map(lambda x:x % 3,c))

a_counter = Counter(a_3)
b_counter = Counter(b_3)
c_counter = Counter(c_3)

print((a_counter[1] + a_counter[2]) * (b_counter[1] + b_counter[2]) * (c_counter[1] + c_counter[2])) 
0