結果
| 問題 |
No.175 simpleDNA
|
| コンテスト | |
| ユーザー |
Kaz_nl
|
| 提出日時 | 2017-09-02 09:59:55 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 204 bytes |
| コンパイル時間 | 652 ms |
| コンパイル使用メモリ | 56,920 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-06 18:33:07 |
| 合計ジャッジ時間 | 1,358 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
int main() {
int L, n;
string s;
cin >> L >> n;
for (int i = 0; i < n; i++) {
cin >> s;
}
cout << (1 << (L - 3)) * n << endl;;
}
Kaz_nl