結果

問題 No.346 チワワ数え上げ問題
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-23 00:35:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 498 bytes
コンパイル時間 2,518 ms
コンパイル使用メモリ 74,396 KB
実行使用メモリ 54,728 KB
最終ジャッジ日時 2024-11-19 03:59:38
合計ジャッジ時間 9,384 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,176 KB
testcase_01 AC 132 ms
41,468 KB
testcase_02 AC 130 ms
41,288 KB
testcase_03 AC 129 ms
41,208 KB
testcase_04 AC 134 ms
41,268 KB
testcase_05 AC 130 ms
41,256 KB
testcase_06 AC 134 ms
41,548 KB
testcase_07 AC 131 ms
41,148 KB
testcase_08 AC 131 ms
41,252 KB
testcase_09 AC 131 ms
41,468 KB
testcase_10 WA -
testcase_11 AC 188 ms
41,708 KB
testcase_12 WA -
testcase_13 AC 190 ms
41,728 KB
testcase_14 AC 144 ms
41,444 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 197 ms
41,816 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 130 ms
41,232 KB
testcase_24 AC 130 ms
41,244 KB
testcase_25 AC 130 ms
41,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		String s=scanner.next();
		int cnt=0;
		int ans=0;
		for(int i=s.length()-1;i>=0;i--) {
			char c=s.charAt(i);
			if(c=='w') {
				cnt++;
			}else if(c=='c'){
				ans+=calc(cnt-1);
			}
		}
		System.out.println(ans);
	}

	private static int calc(int cnt) {
		int res=0;
		for(int i=cnt;i>0;i--) {
			res+=i;
		}
		return res;
	}
}
0