結果
問題 | No.632 穴埋め門松列 |
ユーザー | jimano |
提出日時 | 2018-01-23 22:51:01 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 66 ms / 1,000 ms |
コード長 | 1,023 bytes |
コンパイル時間 | 4,070 ms |
コンパイル使用メモリ | 78,812 KB |
実行使用メモリ | 37,456 KB |
最終ジャッジ日時 | 2024-06-07 19:19:21 |
合計ジャッジ時間 | 4,942 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 62 ms
37,204 KB |
testcase_01 | AC | 55 ms
37,076 KB |
testcase_02 | AC | 65 ms
37,088 KB |
testcase_03 | AC | 66 ms
37,280 KB |
testcase_04 | AC | 57 ms
36,972 KB |
testcase_05 | AC | 63 ms
37,456 KB |
ソースコード
package me.yukicoder.lv1; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; public class No0632 { public static void main(String[] args) { try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) { String[] str = br.readLine().split(" "); int[] matsu = new int[str.length]; int hatena = 0; String ans = null; for (int i = 0; i < 3; i++) { if (str[i].equals("?")) { hatena = i; matsu[i] = 0; } else { matsu[i] = Integer.parseInt(str[i]); } } matsu[hatena] = 1; ans = isKadomatsu(matsu) ? "1" : ""; matsu[hatena] = 4; ans = isKadomatsu(matsu) ? ans + "4" : ans; System.out.println(ans); } catch (IOException e) { e.printStackTrace(); } } static boolean isKadomatsu(int[] matsu) { int[] tmp = { matsu[0], matsu[1], matsu[2] }; Arrays.sort(tmp); return (tmp[1] != matsu[1]) && (matsu[0] != matsu[1] && matsu[1] != matsu[2] && matsu[0] != matsu[2]); } }