結果
| 問題 | No.175 simpleDNA |
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2023-12-03 03:38:28 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 38 ms / 1,000 ms |
| コード長 | 88 bytes |
| 記録 | |
| コンパイル時間 | 254 ms |
| コンパイル使用メモリ | 85,248 KB |
| 実行使用メモリ | 51,840 KB |
| 最終ジャッジ日時 | 2026-04-13 21:04:42 |
| 合計ジャッジ時間 | 7,342 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 |
ソースコード
L = int(input()) N = int(input()) S = input().split() ans = pow(2, L-3) * N print(ans)
norioc