結果
| 問題 |
No.1828 Except 3
|
| ユーザー |
👑 |
| 提出日時 | 2024-01-28 03:23:06 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 51 ms / 2,000 ms |
| コード長 | 255 bytes |
| コンパイル時間 | 159 ms |
| コンパイル使用メモリ | 82,432 KB |
| 実行使用メモリ | 67,328 KB |
| 最終ジャッジ日時 | 2024-09-28 09:50:39 |
| 合計ジャッジ時間 | 1,800 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 16 |
ソースコード
N = int(input()) a = sum([1 if i % 3 != 0 else 0 for i in list(map(int, input().split()))]) b = sum([1 if i % 3 != 0 else 0 for i in list(map(int, input().split()))]) c = sum([1 if i % 3 != 0 else 0 for i in list(map(int, input().split()))]) print(a*b*c)