結果

問題 No.1951 消えたAGCT(2)
ユーザー H20H20
提出日時 2022-03-24 00:10:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 364 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 270,700 KB
最終ジャッジ日時 2024-06-26 20:40:59
合計ジャッジ時間 6,159 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
60,040 KB
testcase_01 AC 36 ms
52,304 KB
testcase_02 AC 36 ms
53,280 KB
testcase_03 AC 36 ms
52,328 KB
testcase_04 AC 35 ms
52,128 KB
testcase_05 AC 36 ms
52,680 KB
testcase_06 AC 36 ms
52,540 KB
testcase_07 AC 37 ms
52,348 KB
testcase_08 AC 307 ms
187,576 KB
testcase_09 AC 54 ms
78,580 KB
testcase_10 AC 140 ms
136,356 KB
testcase_11 AC 309 ms
200,240 KB
testcase_12 AC 97 ms
103,512 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = list(input())
while s.count('A')+s.count('G')+s.count('C')+s.count('T'):
    cnt = s.count('A')+s.count('G')+s.count('C')+s.count('T')
    t = []
    for i,c in enumerate(s):
        if i!=cnt-1:
            t.append(c)
    r = t.count(s[cnt-1])
    for i in range(len(t)):
        t[i] = chr((ord(t[i])-65+r)%26+65)
    s = t
print(n-len(s))
0