結果

問題 No.785 色食い虫
ユーザー pengincoalition
提出日時 2019-07-05 14:09:57
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-21 16:10:48
合計ジャッジ時間 2,076 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

R=list(map(str,input().split(',')))
if R[0]=="NONE":
    R=[]
B=list(map(str,input().split(',')))
if B[0]=="NONE":
    B=[]
G=list(map(str,input().split(',')))
if G[0]=="NONE":
    G=[]

print((16-len(R))**2*(16-len(B))**2*(16-len(G))**2)
0