結果
問題 | No.112 ややこしい鶴亀算 |
ユーザー | fkwnw3_1243 |
提出日時 | 2017-04-27 22:38:18 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 601 bytes |
コンパイル時間 | 2,281 ms |
コンパイル使用メモリ | 74,564 KB |
実行使用メモリ | 41,808 KB |
最終ジャッジ日時 | 2024-09-13 14:54:48 |
合計ジャッジ時間 | 5,318 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 81 ms
38,316 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 80 ms
38,348 KB |
testcase_05 | AC | 76 ms
37,704 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 79 ms
38,324 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 78 ms
38,280 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 81 ms
38,356 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 79 ms
38,464 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader reader =new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(reader.readLine()); String[] inputs = reader.readLine().split(" "); int turtle = 0; for (int i = 0; i < N; i++) { if(Integer.parseInt(inputs[i]) == 2) { turtle += 1; } } System.out.println(turtle + " " + (N-turtle)); } }