結果

問題 No.785 色食い虫
ユーザー O2MTO2MT
提出日時 2021-02-17 20:48:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 87,196 KB
実行使用メモリ 71,636 KB
最終ジャッジ日時 2023-10-12 06:55:44
合計ジャッジ時間 4,002 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,540 KB
testcase_01 AC 75 ms
71,176 KB
testcase_02 AC 71 ms
71,292 KB
testcase_03 AC 71 ms
71,296 KB
testcase_04 AC 69 ms
71,536 KB
testcase_05 AC 69 ms
71,544 KB
testcase_06 AC 70 ms
71,588 KB
testcase_07 AC 70 ms
71,536 KB
testcase_08 AC 71 ms
71,408 KB
testcase_09 AC 69 ms
71,396 KB
testcase_10 AC 70 ms
71,316 KB
testcase_11 AC 71 ms
71,388 KB
testcase_12 AC 71 ms
71,544 KB
testcase_13 AC 71 ms
71,316 KB
testcase_14 AC 71 ms
71,204 KB
testcase_15 AC 71 ms
71,420 KB
testcase_16 AC 71 ms
71,392 KB
testcase_17 AC 69 ms
71,608 KB
testcase_18 AC 71 ms
71,504 KB
testcase_19 AC 70 ms
71,380 KB
testcase_20 AC 71 ms
71,312 KB
testcase_21 AC 71 ms
71,604 KB
testcase_22 AC 71 ms
71,172 KB
testcase_23 AC 72 ms
71,636 KB
testcase_24 AC 71 ms
71,372 KB
testcase_25 AC 69 ms
71,396 KB
testcase_26 AC 71 ms
71,420 KB
testcase_27 AC 70 ms
71,312 KB
testcase_28 AC 69 ms
71,540 KB
testcase_29 AC 70 ms
71,312 KB
testcase_30 AC 70 ms
71,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R = list(map(str,input().split(',')))
G = list(map(str,input().split(',')))
B = list(map(str,input().split(',')))

def setNum(s):
    if s[0] == 'NONE':
        return 0
    return len(s)

r,g,b = setNum(R),setNum(G),setNum(B)

print(((16-r)**2)*((16-g)**2)*((16-b)**2))
0