結果

問題 No.1943 消えたAGCT(1)
ユーザー scrappyscrappy
提出日時 2022-10-18 14:48:58
言語 Go
(1.22.1)
結果
TLE  
実行時間 -
コード長 458 bytes
コンパイル時間 13,073 ms
コンパイル使用メモリ 225,188 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-28 22:56:31
合計ジャッジ時間 30,086 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 TLE -
testcase_13 AC 461 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1,683 ms
5,376 KB
testcase_16 AC 1,135 ms
5,376 KB
testcase_17 AC 1,199 ms
5,376 KB
testcase_18 AC 1,890 ms
6,940 KB
testcase_19 AC 1,868 ms
6,940 KB
testcase_20 AC 1,875 ms
6,940 KB
testcase_21 AC 1,877 ms
6,944 KB
testcase_22 AC 730 ms
5,376 KB
testcase_23 AC 735 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
)

func main() {
	sc := bufio.NewScanner(os.Stdin)
	sc.Buffer(make([]byte, 500000+2), 500000+2)
	sc.Scan()
	sc.Scan()
	s := sc.Text()
	tt := []byte(s)

	c := 0
	for _, t := range tt {
		if t == 'A' || t == 'G' || t == 'C' || t == 'T' {
			c++
		}
	}

	n := 0
	for ; c > 0; n++ {
		t := tt[c-1]
		tt = append(tt[:c-1], tt[c:]...)
		if t == 'A' || t == 'G' || t == 'C' || t == 'T' {
			c--
		}
	}
	fmt.Println(n)
}
0