結果

問題 No.482 あなたの名は
ユーザー yun_appyun_app
提出日時 2017-03-14 17:23:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 802 bytes
コンパイル時間 1,979 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 64,208 KB
最終ジャッジ日時 2024-06-30 00:45:39
合計ジャッジ時間 8,371 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
49,952 KB
testcase_01 AC 53 ms
50,040 KB
testcase_02 AC 54 ms
50,244 KB
testcase_03 AC 52 ms
50,068 KB
testcase_04 AC 56 ms
49,840 KB
testcase_05 WA -
testcase_06 AC 54 ms
50,028 KB
testcase_07 AC 56 ms
50,208 KB
testcase_08 WA -
testcase_09 AC 54 ms
50,104 KB
testcase_10 AC 55 ms
49,972 KB
testcase_11 AC 56 ms
50,088 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 275 ms
63,064 KB
testcase_16 WA -
testcase_17 AC 278 ms
63,924 KB
testcase_18 WA -
testcase_19 AC 281 ms
63,856 KB
testcase_20 AC 283 ms
63,388 KB
testcase_21 AC 283 ms
63,612 KB
testcase_22 AC 283 ms
63,728 KB
testcase_23 AC 279 ms
63,204 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 276 ms
63,780 KB
testcase_27 AC 279 ms
64,056 KB
testcase_28 WA -
testcase_29 AC 277 ms
63,332 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Main
{
    public static void main (String[] args) throws java.lang.Exception
    {
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] lines = br.readLine().split(" ");
        int N = Integer.parseInt(lines[0]);
        long K = Long.parseLong(lines[1]);
        
        long cnt = 0;
        lines = br.readLine().split(" ");
        for(int i=1;i<=N;i++){
            if(i > Integer.parseInt(lines[i-1])){
                cnt++;
            }
        }
        
        System.out.println(K>=cnt&&(K-cnt)%2==0?"YES":"NO");
    }
}
0