結果

問題 No.427 テレビ
ユーザー darknightdarknight
提出日時 2016-10-02 23:05:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 2,809 ms
コンパイル使用メモリ 74,572 KB
実行使用メモリ 41,436 KB
最終ジャッジ日時 2024-12-21 15:09:52
合計ジャッジ時間 4,737 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,112 KB
testcase_01 AC 134 ms
41,180 KB
testcase_02 AC 137 ms
41,412 KB
testcase_03 AC 127 ms
41,148 KB
testcase_04 AC 134 ms
41,436 KB
testcase_05 AC 132 ms
41,392 KB
testcase_06 AC 136 ms
41,344 KB
testcase_07 AC 138 ms
41,316 KB
testcase_08 AC 136 ms
41,252 KB
testcase_09 AC 125 ms
41,088 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