結果

問題 No.1828 Except 3
ユーザー rlangevinrlangevin
提出日時 2024-09-14 00:26:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 67,740 KB
最終ジャッジ日時 2024-09-14 00:26:54
合計ジャッジ時間 1,904 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,896 KB
testcase_01 AC 48 ms
67,740 KB
testcase_02 AC 36 ms
51,824 KB
testcase_03 AC 36 ms
52,276 KB
testcase_04 AC 37 ms
51,932 KB
testcase_05 AC 37 ms
53,592 KB
testcase_06 AC 36 ms
51,812 KB
testcase_07 AC 37 ms
52,748 KB
testcase_08 AC 37 ms
52,152 KB
testcase_09 AC 36 ms
53,012 KB
testcase_10 AC 38 ms
52,436 KB
testcase_11 AC 37 ms
52,348 KB
testcase_12 AC 36 ms
51,880 KB
testcase_13 AC 36 ms
52,672 KB
testcase_14 AC 39 ms
58,904 KB
testcase_15 AC 41 ms
59,488 KB
testcase_16 AC 37 ms
53,228 KB
testcase_17 AC 37 ms
52,616 KB
testcase_18 AC 36 ms
52,552 KB
testcase_19 AC 37 ms
53,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = list(map(int, input().split()))
ans = 1
cnt = 0
for a in A:
	if a % 3:
		cnt += 1
ans *= cnt
cnt = 0
for a in B:
	if a % 3:
		cnt += 1
ans *= cnt
cnt = 0
for a in C:
	if a % 3:
		cnt += 1
ans *= cnt
print(ans)
0