結果

問題 No.201 yukicoderじゃんけん
ユーザー YatsukuYatsuku
提出日時 2015-12-20 20:58:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 177 ms / 5,000 ms
コード長 1,025 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 77,304 KB
実行使用メモリ 41,740 KB
最終ジャッジ日時 2024-09-17 12:21:06
合計ジャッジ時間 5,871 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,644 KB
testcase_01 AC 129 ms
41,416 KB
testcase_02 AC 123 ms
41,252 KB
testcase_03 AC 128 ms
40,956 KB
testcase_04 AC 127 ms
41,200 KB
testcase_05 AC 135 ms
41,468 KB
testcase_06 AC 135 ms
41,368 KB
testcase_07 AC 133 ms
41,248 KB
testcase_08 AC 136 ms
41,344 KB
testcase_09 AC 138 ms
41,472 KB
testcase_10 AC 131 ms
40,852 KB
testcase_11 AC 133 ms
41,208 KB
testcase_12 AC 129 ms
41,340 KB
testcase_13 AC 137 ms
41,388 KB
testcase_14 AC 125 ms
41,116 KB
testcase_15 AC 145 ms
41,196 KB
testcase_16 AC 175 ms
41,740 KB
testcase_17 AC 174 ms
41,632 KB
testcase_18 AC 174 ms
41,336 KB
testcase_19 AC 177 ms
41,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class No_201 {
	public static void main(String args[]) {
		Scanner stdIn = new Scanner(System.in);

		String[] name = new String[2];
		String [] point = new String[2];
		char [] hand = new char[2];

		for (int i = 0; i < 2; i++) {
			name[i] = stdIn.next();
			point[i] = stdIn.next();
			hand[i] = stdIn.next().charAt(0);
		}
		if (point[0].length() > point[1].length()) {
			System.out.println(name[0]);
		} else if (point[1].length() > point[0].length()) {
			System.out.println(name[1]);
		} else if (point[0].length() == point[1].length()){
			for (int i = 0; i < point[0].length(); i++) {
				if ( Character.getNumericValue(point[0].charAt(i)) > Character.getNumericValue(point[1].charAt(i))) {
					System.out.println(name[0]);
					System.exit(0);
				} else if (Character.getNumericValue(point[1].charAt(i)) > Character.getNumericValue(point[0].charAt(i))) {
					System.out.println(name[1]);
					System.exit(0);
				}	else {
					continue;
				}
			}
			System.out.println(-1);
		}
	}
}
0