結果
問題 | No.495 (^^*) Easy |
ユーザー | HEGO55 |
提出日時 | 2017-05-10 16:00:17 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 387 bytes |
コンパイル時間 | 2,219 ms |
コンパイル使用メモリ | 76,416 KB |
実行使用メモリ | 42,768 KB |
最終ジャッジ日時 | 2024-09-15 07:09:11 |
合計ジャッジ時間 | 3,871 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 145 ms
41,900 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
import java.util.*; class Test32{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int right = 0; int left = 0; String str = sc.next(); for(int i=1; i<=(str.length()-1)/5; i++){ if(str.charAt((2+(i-1)*5)-1) == '*'){ right++; }else if(str.charAt((4+(i-1)*5)-1) == '*'){ left++; } } System.out.println(right+" "+left); } }