結果

問題 No.201 yukicoderじゃんけん
ユーザー k_kadorak_kadora
提出日時 2015-06-10 22:46:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 943 bytes
コンパイル時間 2,857 ms
コンパイル使用メモリ 77,888 KB
実行使用メモリ 41,316 KB
最終ジャッジ日時 2024-07-06 15:26:51
合計ジャッジ時間 5,718 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
41,024 KB
testcase_01 AC 99 ms
41,124 KB
testcase_02 AC 98 ms
40,812 KB
testcase_03 AC 109 ms
41,156 KB
testcase_04 AC 87 ms
39,556 KB
testcase_05 AC 101 ms
41,232 KB
testcase_06 AC 87 ms
39,824 KB
testcase_07 AC 96 ms
40,760 KB
testcase_08 AC 103 ms
40,976 KB
testcase_09 AC 101 ms
41,264 KB
testcase_10 AC 100 ms
41,036 KB
testcase_11 AC 103 ms
41,236 KB
testcase_12 AC 104 ms
40,756 KB
testcase_13 AC 104 ms
40,644 KB
testcase_14 AC 100 ms
41,040 KB
testcase_15 AC 114 ms
40,836 KB
testcase_16 AC 126 ms
40,972 KB
testcase_17 AC 117 ms
41,088 KB
testcase_18 AC 134 ms
41,316 KB
testcase_19 AC 121 ms
41,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yurufuwa{
	public static void main(String arg[]){
		String[] name = new String[2];
		String[] point = new String[2];
		String[] hand = new String[2];
		int win = 0;
		Scanner sc = new Scanner(System.in);
		for(int i = 0;i<2;i++){
			name[i] = sc.next();
			point[i] = sc.next();
			hand[i] = sc.next();
		}
		if(point[0].length() > point[1].length()){
			win = 1;
		}else if(point[0].length() < point[1].length()){
			win = 2;
		}else{
			for(int i = 0;i<point[0].length();i++){
				if(Character.getNumericValue(point[0].charAt(i)) > Character.getNumericValue(point[1].charAt(i))){
					win = 1;
					break;
				}else if(Character.getNumericValue(point[0].charAt(i)) < Character.getNumericValue(point[1].charAt(i))){
					win = 2;
					break;
				}
			}
		}
		if(win == 0){
			System.out.println(-1);
		}else if(win == 1){
			System.out.println(name[0]);
		}else{
			System.out.println(name[1]);
		}
	}
}
0