結果

問題 No.427 テレビ
ユーザー darknightdarknight
提出日時 2016-10-02 23:05:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 3,240 ms
コンパイル使用メモリ 71,708 KB
実行使用メモリ 56,032 KB
最終ジャッジ日時 2023-08-23 12:19:19
合計ジャッジ時間 5,319 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
55,404 KB
testcase_01 AC 126 ms
56,032 KB
testcase_02 AC 126 ms
55,712 KB
testcase_03 AC 124 ms
55,460 KB
testcase_04 AC 125 ms
55,604 KB
testcase_05 AC 126 ms
55,576 KB
testcase_06 AC 125 ms
55,396 KB
testcase_07 AC 125 ms
55,436 KB
testcase_08 AC 126 ms
55,636 KB
testcase_09 AC 128 ms
55,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
public class Main {
	public static void main(String[] args) {
 
		Scanner sc  = new Scanner(System.in);

		int o= 0 ,p = 0,q = 0;
		long a = 0, b = 0, c = 0;
		char ch;
		String str;
		

//      String s1 = sc.next();

        int s = Integer.parseInt(sc.next());
        int t = Integer.parseInt(sc.next());
//	    int[] test  = new int[100000];
//      char[] c1 = s1.toCharArray();
        if(s>t){
            System.out.print("TATE");
        }else{
            System.out.print("YOKO");
        }

 //       System.out.print();
        System.out.println();
	}
}
0