結果

問題 No.201 yukicoderじゃんけん
ユーザー shinwisteriashinwisteria
提出日時 2018-03-15 20:15:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 5,000 ms
コード長 755 bytes
コンパイル時間 4,351 ms
コンパイル使用メモリ 77,756 KB
実行使用メモリ 42,452 KB
最終ジャッジ日時 2024-06-01 05:24:23
合計ジャッジ時間 7,456 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,052 KB
testcase_01 AC 128 ms
41,256 KB
testcase_02 AC 129 ms
41,452 KB
testcase_03 AC 131 ms
41,020 KB
testcase_04 AC 136 ms
41,564 KB
testcase_05 AC 132 ms
41,152 KB
testcase_06 AC 132 ms
41,312 KB
testcase_07 AC 130 ms
41,280 KB
testcase_08 AC 136 ms
41,356 KB
testcase_09 AC 137 ms
41,172 KB
testcase_10 AC 144 ms
41,376 KB
testcase_11 AC 135 ms
41,276 KB
testcase_12 AC 135 ms
41,320 KB
testcase_13 AC 136 ms
41,408 KB
testcase_14 AC 132 ms
41,392 KB
testcase_15 AC 165 ms
41,636 KB
testcase_16 AC 162 ms
41,316 KB
testcase_17 AC 168 ms
41,544 KB
testcase_18 AC 171 ms
42,452 KB
testcase_19 AC 171 ms
42,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con201 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String sa = s.next() , pa = s.next() , xa = s.next();
		String sb = s.next() , pb = s.next() , xb = s.next();
		s.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);
					break;
				}else if(a < b){
					System.out.println(sb);
					break;
				}
				if(i == pa.length() -1){
					System.out.println(-1);
				}
			}
		}

	}

}
0