結果
| 問題 | No.785 色食い虫 |
| コンテスト | |
| ユーザー |
Salmonize
|
| 提出日時 | 2020-03-10 12:39:56 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 31 ms / 2,000 ms |
| コード長 | 204 bytes |
| 記録 | |
| コンパイル時間 | 83 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,496 KB |
| 最終ジャッジ日時 | 2024-11-15 23:11:02 |
| 合計ジャッジ時間 | 2,251 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 28 |
ソースコード
r = input().split(',')
g = input().split(',')
b = input().split(',')
if r[0] == 'NONE': r.pop()
if g[0] == 'NONE': g.pop()
if b[0] == 'NONE': b.pop()
print((16-len(r))**2 * (16-len(g))**2 *(16-len(b))**2)
Salmonize