結果

問題 No.495 (^^*) Easy
ユーザー shinwisteriashinwisteria
提出日時 2017-03-24 22:54:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 3,758 ms
コンパイル使用メモリ 76,248 KB
実行使用メモリ 43,668 KB
最終ジャッジ日時 2024-07-05 22:19:57
合計ジャッジ時間 4,632 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,856 KB
testcase_01 AC 115 ms
41,856 KB
testcase_02 AC 129 ms
41,700 KB
testcase_03 AC 126 ms
42,160 KB
testcase_04 AC 115 ms
41,792 KB
testcase_05 AC 156 ms
42,296 KB
testcase_06 AC 239 ms
43,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Easy {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		StringBuilder str = new StringBuilder(s.nextLine());
		s.close();
		
		int l = 0,r = 0;
		while(str.length() != 1){
			if(str.charAt(1) == '^'){
				l++;
			}else{
				r++;
			}
			str.delete(0, 5);
		}
		System.out.println(l + " " + r);

	}

}
0