結果

問題 No.201 yukicoderじゃんけん
ユーザー YamaKasaYamaKasa
提出日時 2018-05-18 15:41:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 177 ms / 5,000 ms
コード長 846 bytes
コンパイル時間 2,097 ms
コンパイル使用メモリ 77,720 KB
実行使用メモリ 43,004 KB
最終ジャッジ日時 2024-06-28 13:45:00
合計ジャッジ時間 5,714 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,496 KB
testcase_01 AC 126 ms
41,772 KB
testcase_02 AC 123 ms
41,228 KB
testcase_03 AC 136 ms
41,404 KB
testcase_04 AC 133 ms
41,552 KB
testcase_05 AC 131 ms
41,448 KB
testcase_06 AC 133 ms
41,460 KB
testcase_07 AC 119 ms
41,532 KB
testcase_08 AC 140 ms
41,576 KB
testcase_09 AC 138 ms
41,484 KB
testcase_10 AC 137 ms
41,544 KB
testcase_11 AC 133 ms
41,088 KB
testcase_12 AC 133 ms
41,192 KB
testcase_13 AC 138 ms
41,724 KB
testcase_14 AC 134 ms
41,112 KB
testcase_15 AC 177 ms
41,904 KB
testcase_16 AC 167 ms
42,008 KB
testcase_17 AC 166 ms
41,916 KB
testcase_18 AC 170 ms
42,832 KB
testcase_19 AC 174 ms
43,004 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);
			System.exit(0);
		}else if(Pa.length() < Pb.length()) {
			System.out.println(Sb);
			System.exit(0);
		}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