結果

問題 No.427 テレビ
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-10 18:35:26
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 259 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 74,536 KB
実行使用メモリ 41,816 KB
最終ジャッジ日時 2024-06-02 03:47:06
合計ジャッジ時間 3,570 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,272 KB
testcase_01 AC 109 ms
41,572 KB
testcase_02 AC 115 ms
41,232 KB
testcase_03 WA -
testcase_04 AC 102 ms
41,668 KB
testcase_05 AC 106 ms
40,408 KB
testcase_06 AC 100 ms
41,252 KB
testcase_07 AC 112 ms
41,400 KB
testcase_08 AC 109 ms
41,816 KB
testcase_09 AC 103 ms
41,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Question427
{
	public static void main(String[] args)
	{
	
		Scanner scan = new Scanner(System.in);
		
		int height = scan.nextInt();
		int width = scan.nextInt();
		
		System.out.println(height%3 == 0 ? "YOKO" : "TATE");
	}
}
0