結果

問題 No.2210 equence Squence Seuence
ユーザー laneguelanegue
提出日時 2023-02-10 23:03:14
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 533 bytes
コンパイル時間 809 ms
コンパイル使用メモリ 101,668 KB
実行使用メモリ 22,072 KB
最終ジャッジ日時 2024-06-22 17:30:01
合計ジャッジ時間 2,833 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 20 ms
6,224 KB
testcase_07 AC 55 ms
13,380 KB
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 74 ms
18,760 KB
testcase_14 AC 74 ms
18,768 KB
testcase_15 AC 72 ms
18,764 KB
testcase_16 AC 72 ms
18,768 KB
testcase_17 WA -
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 1 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 51 ms
13,204 KB
testcase_24 AC 35 ms
7,720 KB
testcase_25 AC 45 ms
12,072 KB
testcase_26 AC 60 ms
21,064 KB
testcase_27 AC 16 ms
5,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.string;
import std.conv;
import std.algorithm;
import std.range;

void main(){
  auto s = readln.chomp.split.to!(int[]);
  auto N = s[0];
  auto K = s[1];
  auto A = readln.chomp.split.to!(int[]);
  auto c = 0;
  auto r = 0;
  for(auto i = 0; i < N - 1; i++){
    if(A[i] >= A[i + 1]){
      c++;
    }else{
      r++;
    }
    if(c == K || r == N - K + 1){
      writeln((A[0 .. i] ~ A[i + 1 .. $]).to!(string[]).join(" "));
      return;
    }
  }
  writeln(A[0 .. $ - 1].to!(string[]).join(" "));
}

0