結果

問題 No.1943 消えたAGCT(1)
ユーザー mobchanmobchan
提出日時 2023-05-07 13:37:30
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 835 bytes
コンパイル時間 9,088 ms
コンパイル使用メモリ 168,320 KB
実行使用メモリ 73,088 KB
最終ジャッジ日時 2024-11-24 13:45:03
合計ジャッジ時間 38,754 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
33,024 KB
testcase_01 AC 48 ms
36,640 KB
testcase_02 AC 47 ms
66,288 KB
testcase_03 AC 48 ms
35,164 KB
testcase_04 AC 46 ms
36,512 KB
testcase_05 AC 46 ms
66,176 KB
testcase_06 AC 45 ms
32,896 KB
testcase_07 AC 45 ms
36,388 KB
testcase_08 AC 47 ms
66,536 KB
testcase_09 AC 71 ms
39,680 KB
testcase_10 AC 69 ms
43,040 KB
testcase_11 AC 69 ms
73,088 KB
testcase_12 TLE -
testcase_13 AC 1,026 ms
42,272 KB
testcase_14 AC 60 ms
67,712 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1,641 ms
36,096 KB
testcase_23 AC 1,634 ms
36,324 KB
testcase_24 AC 67 ms
36,352 KB
testcase_25 AC 67 ms
36,352 KB
testcase_26 AC 64 ms
73,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (84 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main(string[] args)
    {
        var n = int.Parse(Console.ReadLine());
        var s = Console.ReadLine().ToList();

        var count = 0;
        var times = 0;

        for (int i = 0; i < s.Count; i++)
        {
            if (s[i] == 'A' || s[i] == 'C' || s[i] == 'G' || s[i] == 'T') count++;
        }


        while (count != 0)
        {
            if (s[count - 1] == 'A' || s[count - 1] == 'C' || s[count - 1] == 'G' || s[count - 1] == 'T')
            {
                s.RemoveAt(count - 1);
                times++;
                count--;
            }
            else
            {
                s.RemoveAt(count - 1);
                times++;
            }
        }

        Console.WriteLine(times);
    }
}
0