結果
| 問題 | No.785 色食い虫 |
| コンテスト | |
| ユーザー |
rythem00359
|
| 提出日時 | 2020-08-17 15:04:16 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 159 bytes |
| 記録 | |
| コンパイル時間 | 53 ms |
| コンパイル使用メモリ | 14,976 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2026-09-13 22:36:09 |
| 合計ジャッジ時間 | 2,643 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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