結果
問題 | No.264 じゃんけん |
ユーザー | oyafuso |
提出日時 | 2019-03-11 14:02:30 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 131 ms / 5,000 ms |
コード長 | 1,212 bytes |
コンパイル時間 | 2,140 ms |
コンパイル使用メモリ | 78,068 KB |
実行使用メモリ | 54,208 KB |
最終ジャッジ日時 | 2024-06-23 15:31:00 |
合計ジャッジ時間 | 3,900 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
54,096 KB |
testcase_01 | AC | 130 ms
54,156 KB |
testcase_02 | AC | 129 ms
54,176 KB |
testcase_03 | AC | 128 ms
53,940 KB |
testcase_04 | AC | 129 ms
54,208 KB |
testcase_05 | AC | 131 ms
53,796 KB |
testcase_06 | AC | 128 ms
54,036 KB |
testcase_07 | AC | 129 ms
53,904 KB |
testcase_08 | AC | 128 ms
54,036 KB |
ソースコード
import java.util.*; class Main { private static final String SPLIT_STR = " "; private static final int CASE_ROCK = 0; private static final int CASE_PAPER = 2; private static final int CASE_SCISSORS = 1; private static final String RESULT_WIN = "Won"; private static final String RESULT_LOSE = "Lost"; private static final String RESULT_DRAW = "Drew"; private static final String[] RESULT_ARRAY = {RESULT_DRAW, RESULT_WIN, RESULT_LOSE}; public static void main(String[] args) { // Scanner生成 Scanner sc = new Scanner(System.in); // 入力設定 String input = sc.nextLine(); String[] split = input.split(SPLIT_STR); List<Integer> numList = new ArrayList<>(split.length); for (int i = 0; i < split.length; i++) { numList.add(Integer.parseInt(split[i])); } // Scannerクローズ sc.close(); /* メイン処理開始 */ // 変数初期化 String result = ""; int N = numList.get(0); int K = numList.get(1); // 結果設定 for (int i = 0; i < RESULT_ARRAY.length; i++) { if (N == K) { result = RESULT_ARRAY[i]; } N = (N + 1) == RESULT_ARRAY.length ? 0 : N + 1; } /* メイン処理終了 */ // 結果出力 System.out.println(result); } }