結果

問題 No.1159 Sashiming String
ユーザー tentententen
提出日時 2020-08-17 18:06:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 2,288 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 44,840 KB
最終ジャッジ日時 2024-10-11 11:11:16
合計ジャッジ時間 5,637 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,104 KB
testcase_01 AC 128 ms
41,200 KB
testcase_02 AC 216 ms
43,580 KB
testcase_03 AC 227 ms
43,076 KB
testcase_04 AC 216 ms
43,592 KB
testcase_05 AC 232 ms
44,344 KB
testcase_06 AC 222 ms
43,464 KB
testcase_07 AC 224 ms
44,452 KB
testcase_08 AC 259 ms
44,840 KB
testcase_09 AC 255 ms
44,448 KB
testcase_10 AC 126 ms
41,184 KB
testcase_11 AC 128 ms
40,764 KB
testcase_12 AC 124 ms
40,808 KB
testcase_13 AC 128 ms
41,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] arr = sc.next().replaceAll("ing", "!").toCharArray();
        long ans = 0;
        long sCount = 0;
        for (char c : arr) {
            if (c == 'S') {
                sCount++;
            } else if (c == '!') {
                ans += sCount;
            }
        }
        System.out.println(ans);
    }
}
0