結果
問題 | No.203 ゴールデン・ウィーク(1) |
ユーザー | TwinkleStar74 |
提出日時 | 2017-10-29 03:00:01 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 607 bytes |
コンパイル時間 | 4,008 ms |
コンパイル使用メモリ | 73,148 KB |
実行使用メモリ | 37,160 KB |
最終ジャッジ日時 | 2024-11-22 04:38:42 |
合計ジャッジ時間 | 6,483 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 51 ms
36,924 KB |
testcase_02 | AC | 51 ms
36,872 KB |
testcase_03 | WA | - |
testcase_04 | AC | 51 ms
36,532 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 50 ms
36,824 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 51 ms
36,736 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 52 ms
36,620 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 52 ms
36,956 KB |
testcase_27 | AC | 51 ms
37,112 KB |
testcase_28 | AC | 52 ms
37,024 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No203 { public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String str = br.readLine(); String str2 = br.readLine(); int count = 0; count = check(str, count); count = check(str2, count); System.out.println(count); } public static int check(String s, int n){ int ans = n; char[] day = s.toCharArray(); for(int i=0; i < 7; i++){ if(day[i] == 'o') ans++; else ans = 0; } return ans; } }