結果

問題 No.3059 tan
ユーザー ks2mks2m
提出日時 2020-04-01 21:41:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 379 bytes
コンパイル時間 2,723 ms
コンパイル使用メモリ 74,436 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-06-27 10:05:51
合計ジャッジ時間 3,523 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 150 ms
53,888 KB
testcase_02 AC 151 ms
54,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int t = sc.nextInt();
		for (int i = 0; i < t; i++) {
			int x = sc.nextInt();
			if (x == 0
					|| x == 45
					|| x == 60
					) {
				System.out.println("Y");
			} else {
				System.out.println("N");
			}
		}
		sc.close();
	}
}
0