結果
問題 | No.175 simpleDNA |
ユーザー | Yuhel Tanaka |
提出日時 | 2018-10-09 12:51:44 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 167 bytes |
コンパイル時間 | 197 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,444 KB |
最終ジャッジ日時 | 2024-10-12 16:21:56 |
合計ジャッジ時間 | 3,362 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
15,616 KB |
testcase_01 | AC | 28 ms
10,496 KB |
testcase_02 | AC | 160 ms
10,368 KB |
testcase_03 | AC | 28 ms
10,368 KB |
testcase_04 | AC | 27 ms
10,368 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
ソースコード
from itertools import product as p l=int(input()) n=int(input()) *s,=map(tuple,input().split()) v=0 for i in p(["A","B"],repeat=l): if i[-3:] in s: v+=1 print(v)