結果
問題 | No.346 チワワ数え上げ問題 |
ユーザー | tenten |
提出日時 | 2023-07-27 15:33:07 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 93 ms / 2,000 ms |
コード長 | 1,723 bytes |
コンパイル時間 | 3,026 ms |
コンパイル使用メモリ | 91,068 KB |
実行使用メモリ | 39,284 KB |
最終ジャッジ日時 | 2024-10-04 12:12:59 |
合計ジャッジ時間 | 5,172 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
37,176 KB |
testcase_01 | AC | 48 ms
36,732 KB |
testcase_02 | AC | 46 ms
36,980 KB |
testcase_03 | AC | 47 ms
37,104 KB |
testcase_04 | AC | 48 ms
37,204 KB |
testcase_05 | AC | 47 ms
37,024 KB |
testcase_06 | AC | 47 ms
37,116 KB |
testcase_07 | AC | 48 ms
37,036 KB |
testcase_08 | AC | 48 ms
37,056 KB |
testcase_09 | AC | 49 ms
37,172 KB |
testcase_10 | AC | 78 ms
39,168 KB |
testcase_11 | AC | 76 ms
38,216 KB |
testcase_12 | AC | 68 ms
38,456 KB |
testcase_13 | AC | 61 ms
37,584 KB |
testcase_14 | AC | 48 ms
37,264 KB |
testcase_15 | AC | 64 ms
38,912 KB |
testcase_16 | AC | 84 ms
39,068 KB |
testcase_17 | AC | 87 ms
39,108 KB |
testcase_18 | AC | 91 ms
39,208 KB |
testcase_19 | AC | 85 ms
38,984 KB |
testcase_20 | AC | 87 ms
38,992 KB |
testcase_21 | AC | 79 ms
39,284 KB |
testcase_22 | AC | 93 ms
38,828 KB |
testcase_23 | AC | 50 ms
36,908 KB |
testcase_24 | AC | 52 ms
37,176 KB |
testcase_25 | AC | 47 ms
36,956 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); long c1 = 0; long w1 = 0; long ans = 0; for (char c : sc.next().toCharArray()) { if (c == 'c') { c1++; } else if (c == 'w') { ans += w1; w1 += c1; } } System.out.println(ans); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }