結果

問題 No.785 色食い虫
ユーザー convexineqconvexineq
提出日時 2021-03-19 02:42:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 53,436 KB
最終ジャッジ日時 2024-04-28 16:27:45
合計ジャッジ時間 2,074 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
52,708 KB
testcase_01 AC 30 ms
52,524 KB
testcase_02 AC 29 ms
52,512 KB
testcase_03 AC 31 ms
52,428 KB
testcase_04 AC 29 ms
52,484 KB
testcase_05 AC 30 ms
52,204 KB
testcase_06 AC 39 ms
51,940 KB
testcase_07 AC 30 ms
52,192 KB
testcase_08 AC 30 ms
52,376 KB
testcase_09 AC 30 ms
52,444 KB
testcase_10 AC 32 ms
52,612 KB
testcase_11 AC 34 ms
53,312 KB
testcase_12 AC 31 ms
52,764 KB
testcase_13 AC 30 ms
52,272 KB
testcase_14 AC 31 ms
52,552 KB
testcase_15 AC 30 ms
51,828 KB
testcase_16 AC 30 ms
51,688 KB
testcase_17 AC 30 ms
52,600 KB
testcase_18 AC 31 ms
52,604 KB
testcase_19 AC 32 ms
52,312 KB
testcase_20 AC 31 ms
52,744 KB
testcase_21 AC 31 ms
52,628 KB
testcase_22 AC 30 ms
52,708 KB
testcase_23 AC 31 ms
53,436 KB
testcase_24 AC 30 ms
52,988 KB
testcase_25 AC 31 ms
51,948 KB
testcase_26 AC 31 ms
52,380 KB
testcase_27 AC 30 ms
53,020 KB
testcase_28 AC 29 ms
53,348 KB
testcase_29 AC 30 ms
53,156 KB
testcase_30 AC 31 ms
52,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ans = 1
for _ in range(3):
    a = input().split(",")
    ans *= 256 if a==["NONE"] else (16-len(a))**2
print(ans)
0