結果

問題 No.1943 消えたAGCT(1)
ユーザー rururunrururun
提出日時 2024-11-15 12:28:12
言語 Swift
(5.10.0)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 1,440 ms
コンパイル使用メモリ 120,600 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-11-15 12:28:28
合計ジャッジ時間 4,615 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,472 KB
testcase_01 AC 9 ms
9,344 KB
testcase_02 AC 9 ms
9,472 KB
testcase_03 AC 9 ms
9,344 KB
testcase_04 AC 10 ms
9,344 KB
testcase_05 AC 9 ms
9,472 KB
testcase_06 AC 10 ms
9,344 KB
testcase_07 AC 10 ms
9,472 KB
testcase_08 AC 9 ms
9,344 KB
testcase_09 AC 95 ms
17,276 KB
testcase_10 AC 75 ms
17,280 KB
testcase_11 AC 67 ms
17,404 KB
testcase_12 AC 90 ms
17,188 KB
testcase_13 AC 49 ms
14,036 KB
testcase_14 AC 12 ms
9,728 KB
testcase_15 AC 94 ms
16,784 KB
testcase_16 AC 80 ms
15,368 KB
testcase_17 AC 83 ms
15,720 KB
testcase_18 AC 98 ms
17,276 KB
testcase_19 AC 102 ms
17,280 KB
testcase_20 AC 98 ms
17,276 KB
testcase_21 AC 102 ms
17,280 KB
testcase_22 AC 92 ms
17,404 KB
testcase_23 AC 97 ms
17,276 KB
testcase_24 AC 76 ms
17,276 KB
testcase_25 AC 78 ms
17,280 KB
testcase_26 AC 76 ms
17,408 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.swift:1:11: warning: expression of type 'String' is unused
readLine()!
~~~~~~~~~~^

ソースコード

diff #

readLine()!
let s = readLine()!.map{String($0)}
let As: Set<String> = ["A","G","C","T"]
var c = 0
for i in s{
    if As.contains(i){
        c += 1
    }
}
var k = c, cnt = 0
c = c-1
while c >= 0 {
    if !As.contains(s[c]){
        while !As.contains(s[k]){
            k += 1
            cnt += 1
        }
        k += 1
        cnt += 1
    }
    c -= 1
    cnt += 1
}
print(cnt)
0