結果

問題 No.785 色食い虫
コンテスト
ユーザー ssmkzk
提出日時 2020-02-10 18:02:29
言語 Python3
(3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
RE  
実行時間 -
コード長 230 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 56 ms
コンパイル使用メモリ 14,848 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2026-09-07 05:29:15
合計ジャッジ時間 2,873 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other AC * 2 RE * 26
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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)
0