結果

問題 No.175 simpleDNA
ユーザー tookunn_1213tookunn_1213
提出日時 2015-04-02 23:30:37
言語 Python2
(2.7.18)
結果
AC  
実行時間 11 ms / 1,000 ms
コード長 70 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 6,604 KB
実行使用メモリ 6,072 KB
最終ジャッジ日時 2023-09-17 01:36:12
合計ジャッジ時間 910 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,072 KB
testcase_01 AC 10 ms
6,032 KB
testcase_02 AC 11 ms
5,976 KB
testcase_03 AC 10 ms
5,940 KB
testcase_04 AC 10 ms
6,060 KB
testcase_05 AC 11 ms
5,964 KB
testcase_06 AC 10 ms
6,072 KB
testcase_07 AC 11 ms
6,060 KB
testcase_08 AC 11 ms
5,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L = input()
N = input()
C = raw_input().split()
l = L - 3
print 2**l*N
0