結果
問題 | No.341 沈黙の期間 |
ユーザー | mizunomi32 |
提出日時 | 2016-02-28 22:42:17 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 444 bytes |
コンパイル時間 | 3,227 ms |
コンパイル使用メモリ | 74,440 KB |
実行使用メモリ | 56,392 KB |
最終ジャッジ日時 | 2024-09-24 12:20:00 |
合計ジャッジ時間 | 5,725 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
53,868 KB |
testcase_01 | WA | - |
testcase_02 | AC | 122 ms
54,100 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 123 ms
54,364 KB |
testcase_12 | AC | 124 ms
54,088 KB |
testcase_13 | AC | 122 ms
53,992 KB |
ソースコード
import java.util.Scanner; public class main { public static void main(String[] args){ Scanner sc= new Scanner(System.in); String S = sc.next(); char[] chars = S.toCharArray(); int lengths =S.length(); int i=0; int count=0; for(;i<lengths;i++){ if(chars[i]=='…'){ count++; } } System.out.println(count); } }