結果
| 問題 | No.785 色食い虫 |
| コンテスト | |
| ユーザー |
htkb
|
| 提出日時 | 2019-02-08 21:35:37 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 92 ms / 2,000 ms |
| + 265µs | |
| コード長 | 230 bytes |
| 記録 | |
| コンパイル時間 | 281 ms |
| コンパイル使用メモリ | 21,280 KB |
| 実行使用メモリ | 15,740 KB |
| 最終ジャッジ日時 | 2026-08-01 05:05:31 |
| 合計ジャッジ時間 | 4,672 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 28 |
ソースコード
r = list(input().split(","))
g = list(input().split(","))
b = list(input().split(","))
if r[0] == "NONE":
r = []
if g[0] == "NONE":
g = []
if b[0] == "NONE":
b = []
print(((16-len(r)) * (16-len(g)) * (16-len(b)))**2)
htkb