結果
| 問題 |
No.175 simpleDNA
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-04-01 10:09:47 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 289 bytes |
| コンパイル時間 | 4,043 ms |
| コンパイル使用メモリ | 250,672 KB |
| 最終ジャッジ日時 | 2025-02-20 18:46:33 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 |
ソースコード
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
ll l, n;
string s[10];
int main() {
cin >> l >> n;
for (int i = 0; i < n; i++) cin >> s[i];
cout << (1 << (l - 3)) * n << endl;
return 0;
}