結果
問題 | No.112 ややこしい鶴亀算 |
ユーザー | imcgskn |
提出日時 | 2017-12-12 18:38:48 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 771 bytes |
コンパイル時間 | 3,563 ms |
コンパイル使用メモリ | 75,976 KB |
実行使用メモリ | 55,204 KB |
最終ジャッジ日時 | 2024-12-14 06:14:02 |
合計ジャッジ時間 | 8,901 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 158 ms
55,016 KB |
testcase_01 | AC | 164 ms
54,616 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 158 ms
54,948 KB |
testcase_05 | AC | 158 ms
54,976 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 161 ms
54,920 KB |
testcase_09 | AC | 162 ms
54,952 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 160 ms
54,616 KB |
testcase_14 | AC | 173 ms
54,844 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 174 ms
54,672 KB |
testcase_20 | AC | 163 ms
54,920 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 168 ms
54,924 KB |
ソースコード
import java.util.Scanner; public class Tsurukame { public static void main(String args[]){ Scanner stdIn = new Scanner(System.in); int num = stdIn.nextInt(); //匹数 int tsuru = 0; //鶴 int kame = 0; //亀 final int tlegs = 2; final int klegs = 4; for(int i = 0; i < num; i++){ int legs = stdIn.nextInt(); //足の本数(2or4) if(legs / (num - 1) == tlegs){ tsuru++; } else if(legs / (num - 1) == klegs){ kame++; } else{ System.out.println("足の数は正しい値(2 or 4)を入力してください"); } } System.out.println(tsuru + " " + kame); } }