結果
| 問題 |
No.785 色食い虫
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-02-10 18:02:29 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 230 bytes |
| コンパイル時間 | 89 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-10-01 06:27:30 |
| 合計ジャッジ時間 | 1,638 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | AC * 2 RE * 26 |
ソースコード
R_l = list(map(int, input().split(",")))
G_l = list(map(int, input().split(",")))
B_l = list(map(int, input().split(",")))
R = max(1, 16 - len(R_l))
G = max(1, 16 - len(G_l))
B = max(1, 16 - len(B_l))
print(R * R * G * G *B * B)