結果

問題 No.201 yukicoderじゃんけん
ユーザー kou6839kou6839
提出日時 2015-05-04 01:07:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 5,000 ms
コード長 756 bytes
コンパイル時間 1,965 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 41,412 KB
最終ジャッジ日時 2024-07-05 18:41:25
合計ジャッジ時間 5,392 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,104 KB
testcase_01 AC 119 ms
41,160 KB
testcase_02 AC 121 ms
41,256 KB
testcase_03 AC 117 ms
40,120 KB
testcase_04 AC 113 ms
41,052 KB
testcase_05 AC 124 ms
41,144 KB
testcase_06 AC 124 ms
40,776 KB
testcase_07 AC 124 ms
40,936 KB
testcase_08 AC 128 ms
41,044 KB
testcase_09 AC 126 ms
41,284 KB
testcase_10 AC 107 ms
39,452 KB
testcase_11 AC 129 ms
40,984 KB
testcase_12 AC 126 ms
41,092 KB
testcase_13 AC 124 ms
40,620 KB
testcase_14 AC 128 ms
41,240 KB
testcase_15 AC 158 ms
41,108 KB
testcase_16 AC 144 ms
41,100 KB
testcase_17 AC 157 ms
41,288 KB
testcase_18 AC 142 ms
41,412 KB
testcase_19 AC 144 ms
41,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.File;
import java.util.*;

public class Main {
	public static void main(String[] args){
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		String aname = sc.next();
		String ate  = sc.next();
		String atee = sc.next();

		String bname = sc.next();
		String bte  = sc.next();
		String btee = sc.next();
		if(ate.length()>bte.length()){
			System.out.println(aname);
		}else if(ate.length()<bte.length()){
			System.out.println(bname);
		}else{
			for(int i=0;i<ate.length();i++){
				if(ate.charAt(i)>bte.charAt(i)){
					System.out.println(aname);
					return;
				}else if(ate.charAt(i)<bte.charAt(i)){
					System.out.println(bname);
					return;
				}
			}
			System.out.println(-1);
		}
	}
}
0