結果

問題 No.341 沈黙の期間
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 15:01:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 263 bytes
コンパイル時間 3,734 ms
コンパイル使用メモリ 76,124 KB
実行使用メモリ 41,780 KB
最終ジャッジ日時 2024-11-15 18:41:46
合計ジャッジ時間 6,184 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,360 KB
testcase_01 AC 123 ms
41,780 KB
testcase_02 AC 122 ms
41,400 KB
testcase_03 AC 110 ms
40,036 KB
testcase_04 AC 126 ms
41,396 KB
testcase_05 AC 124 ms
41,376 KB
testcase_06 AC 109 ms
40,160 KB
testcase_07 AC 128 ms
41,412 KB
testcase_08 AC 124 ms
41,200 KB
testcase_09 AC 126 ms
41,228 KB
testcase_10 AC 114 ms
40,364 KB
testcase_11 AC 108 ms
40,052 KB
testcase_12 AC 128 ms
41,588 KB
testcase_13 AC 117 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		String s = sc.next(), t = "…";
		int n = 0;
		while (s.indexOf(t) >= 0) {
			n++;
			t += "…";
		}
		System.out.println(n);
	}
}
0