結果

問題 No.785 色食い虫
ユーザー sentya7
提出日時 2019-03-16 08:03:11
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 202 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-01 22:21:35
合計ジャッジ時間 2,073 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

eat = []
for i in range(3):
    s = input().split()
    if s[0] == "NONE":
        eat.append(16)
    else:
        eat.append(16-len(s))

ans = 1
for e in eat:
    ans *= e
    ane *= e
    
print(ans)
0