結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー practikovatpractikovat
提出日時 2019-05-22 16:45:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 2,985 ms
コンパイル使用メモリ 74,228 KB
実行使用メモリ 50,204 KB
最終ジャッジ日時 2024-09-17 09:35:59
合計ジャッジ時間 4,804 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
49,764 KB
testcase_01 AC 53 ms
49,976 KB
testcase_02 AC 52 ms
49,648 KB
testcase_03 AC 52 ms
49,740 KB
testcase_04 AC 52 ms
49,672 KB
testcase_05 AC 52 ms
49,928 KB
testcase_06 AC 52 ms
49,876 KB
testcase_07 AC 51 ms
49,672 KB
testcase_08 AC 52 ms
49,964 KB
testcase_09 AC 53 ms
49,668 KB
testcase_10 AC 52 ms
49,788 KB
testcase_11 AC 51 ms
49,544 KB
testcase_12 AC 51 ms
50,204 KB
testcase_13 AC 52 ms
49,696 KB
testcase_14 AC 51 ms
49,692 KB
testcase_15 AC 52 ms
49,812 KB
testcase_16 AC 52 ms
49,704 KB
testcase_17 AC 53 ms
49,776 KB
testcase_18 AC 53 ms
49,668 KB
testcase_19 AC 53 ms
49,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class Restrictions {
	public static void main(String args[]) {
//		Scanner scan = new Scanner(System.in);

		// 100円の枚数
//		int n = scan.nextInt();
		// 10円の枚数
//		int m = scan.nextInt();

		// 判定条件(本来は前提条件(M=10×N)があるため問答無用でYes)
		// 今回の条件では100円の枚数は最大で1枚差であることを利用する
//		if((n % 2) == 1) {
//			if(m < 10) {
//				System.out.println("No");
//			}
//			m -= 10;
//			if(m % 2 == 0) {
//				System.out.println("Yes");
//			}else {
//				System.out.println("No");
//			}
//		}
		System.out.println("Yes");
		return;
	}
}
0