結果

問題 No.346 チワワ数え上げ問題
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-23 00:36:57
言語 Java
(openjdk 23)
結果
AC  
実行時間 644 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 3,243 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 54,600 KB
最終ジャッジ日時 2024-11-19 04:00:14
合計ジャッジ時間 8,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,264 KB
testcase_01 AC 122 ms
53,784 KB
testcase_02 AC 99 ms
52,856 KB
testcase_03 AC 115 ms
53,828 KB
testcase_04 AC 118 ms
53,820 KB
testcase_05 AC 115 ms
54,268 KB
testcase_06 AC 118 ms
53,880 KB
testcase_07 AC 106 ms
52,752 KB
testcase_08 AC 101 ms
52,768 KB
testcase_09 AC 116 ms
54,112 KB
testcase_10 AC 182 ms
54,184 KB
testcase_11 AC 181 ms
54,580 KB
testcase_12 AC 187 ms
54,104 KB
testcase_13 AC 173 ms
54,452 KB
testcase_14 AC 136 ms
54,048 KB
testcase_15 AC 182 ms
54,380 KB
testcase_16 AC 178 ms
54,524 KB
testcase_17 AC 181 ms
54,560 KB
testcase_18 AC 188 ms
54,512 KB
testcase_19 AC 179 ms
54,340 KB
testcase_20 AC 177 ms
54,468 KB
testcase_21 AC 642 ms
54,600 KB
testcase_22 AC 644 ms
54,488 KB
testcase_23 AC 118 ms
53,880 KB
testcase_24 AC 112 ms
54,016 KB
testcase_25 AC 110 ms
53,820 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;
		long 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 long calc(int cnt) {
		long res=0;
		for(int i=cnt;i>0;i--) {
			res+=i;
		}
		return res;
	}
}
0