結果

問題 No.201 yukicoderじゃんけん
ユーザー YamaKasaYamaKasa
提出日時 2018-05-18 15:33:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 807 bytes
コンパイル時間 2,158 ms
コンパイル使用メモリ 78,356 KB
実行使用メモリ 54,756 KB
最終ジャッジ日時 2024-06-28 13:44:44
合計ジャッジ時間 5,826 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,244 KB
testcase_01 AC 133 ms
54,244 KB
testcase_02 AC 127 ms
53,860 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 136 ms
54,368 KB
testcase_06 AC 136 ms
54,328 KB
testcase_07 AC 135 ms
54,532 KB
testcase_08 AC 143 ms
54,328 KB
testcase_09 AC 142 ms
54,496 KB
testcase_10 WA -
testcase_11 AC 134 ms
54,316 KB
testcase_12 AC 134 ms
54,208 KB
testcase_13 AC 140 ms
54,528 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 170 ms
54,448 KB
testcase_17 AC 170 ms
54,328 KB
testcase_18 AC 168 ms
54,396 KB
testcase_19 AC 174 ms
54,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String Sa = scan.next();
		String Pa = scan.next();
		String Xa = scan.next();
		String Sb = scan.next();
		String Pb = scan.next();

		String Xb = scan.next();
		if(Xa.equals(Xb)) {
		}
		scan.close();
		if(Pa.length() > Pb.length()) {
			System.out.println(Sa);
		}else if(Pa.length() < Pb.length()) {
			System.out.println(Sb);
		}else {
			for(int i = 0; i < Pa.length(); i++) {
				int a = Integer.parseInt(Pa.substring(i, i + 1));
				int b = Integer.parseInt(Pb.substring(i, i + 1));
				if(a > b) {
					System.out.println(Sa);
					System.exit(0);
				}else if(a < b) {
					System.out.println(Sb);
					System.exit(0);
				}
			}
		}
		System.out.println(-1);

	}
}
0