結果

問題 No.290 1010
ユーザー spaciaspacia
提出日時 2016-01-18 23:24:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 616 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 53,864 KB
最終ジャッジ日時 2024-09-21 07:58:59
合計ジャッジ時間 4,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,284 KB
testcase_01 AC 54 ms
49,952 KB
testcase_02 AC 54 ms
50,252 KB
testcase_03 AC 57 ms
50,116 KB
testcase_04 AC 56 ms
50,060 KB
testcase_05 AC 55 ms
50,392 KB
testcase_06 AC 54 ms
49,708 KB
testcase_07 AC 54 ms
50,212 KB
testcase_08 AC 54 ms
50,272 KB
testcase_09 AC 55 ms
50,220 KB
testcase_10 AC 55 ms
50,012 KB
testcase_11 AC 55 ms
50,200 KB
testcase_12 AC 57 ms
50,180 KB
testcase_13 AC 54 ms
50,092 KB
testcase_14 AC 56 ms
50,052 KB
testcase_15 AC 54 ms
50,040 KB
testcase_16 AC 54 ms
50,328 KB
testcase_17 AC 55 ms
50,300 KB
testcase_18 AC 55 ms
50,296 KB
testcase_19 AC 55 ms
49,780 KB
testcase_20 AC 142 ms
53,740 KB
testcase_21 AC 134 ms
53,456 KB
testcase_22 AC 138 ms
53,672 KB
testcase_23 AC 139 ms
53,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static boolean solve (String s , int n) {
		if (n == 1) return false;
		if (n == 2) return !s.equals("01") && !s.equals("10");
		if (n == 3) return !s.equals("010") && !s.equals("101");
		return true;
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		String s = br.readLine();
		
		out(solve(s , n) ? "YES" : "NO");
	}
	
}
0