結果

問題 No.175 simpleDNA
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-19 15:48:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 1,000 ms
コード長 99 bytes
コンパイル時間 574 ms
コンパイル使用メモリ 87,124 KB
実行使用メモリ 71,640 KB
最終ジャッジ日時 2023-08-22 13:22:05
合計ジャッジ時間 1,968 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,272 KB
testcase_01 AC 71 ms
71,084 KB
testcase_02 AC 69 ms
71,384 KB
testcase_03 AC 68 ms
71,244 KB
testcase_04 AC 69 ms
71,360 KB
testcase_05 AC 71 ms
71,140 KB
testcase_06 AC 68 ms
71,640 KB
testcase_07 AC 70 ms
71,548 KB
testcase_08 AC 70 ms
71,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = int(input())
n = int(input())
S = list(map(str, input().split()))

ans = n*2**(l-3)
print(ans)
0