結果
| 問題 | No.1828 Except 3 |
| ユーザー |
👑 Nachia
|
| 提出日時 | 2022-02-01 20:55:39 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 68 ms / 2,000 ms |
| + 577µs | |
| コード長 | 151 bytes |
| 記録 | |
| コンパイル時間 | 236 ms |
| コンパイル使用メモリ | 96,108 KB |
| 実行使用メモリ | 83,712 KB |
| 最終ジャッジ日時 | 2026-07-25 09:50:18 |
| 合計ジャッジ時間 | 2,747 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 16 |
ソースコード
import math for n in map(int,input().split()) : print(math.prod([sum([(1 if a % 3 != 0 else 0) for a in map(int,input().split())]) for t in range(3)]))
Nachia