結果
| 問題 |
No.785 色食い虫
|
| コンテスト | |
| ユーザー |
rythem00359
|
| 提出日時 | 2020-08-17 15:04:16 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 159 bytes |
| コンパイル時間 | 254 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-10-11 11:04:01 |
| 合計ジャッジ時間 | 2,295 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 WA * 8 |
ソースコード
color=[list(input().split(',')) for _ in range(3)]
ans=1
for i in range(3):
if color[0][0]!='NONE':ans*=(16-len(color[i]))**2
else :ans*=256
print(ans)
rythem00359