結果
問題 | No.365 ジェンガソート |
ユーザー | kuuso1 |
提出日時 | 2016-04-30 00:18:56 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,034 bytes |
コンパイル時間 | 803 ms |
コンパイル使用メモリ | 110,524 KB |
実行使用メモリ | 33,584 KB |
最終ジャッジ日時 | 2024-10-04 23:30:14 |
合計ジャッジ時間 | 3,208 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
25,680 KB |
testcase_01 | WA | - |
testcase_02 | AC | 20 ms
23,640 KB |
testcase_03 | AC | 20 ms
25,756 KB |
testcase_04 | AC | 21 ms
23,852 KB |
testcase_05 | AC | 20 ms
23,892 KB |
testcase_06 | AC | 20 ms
23,856 KB |
testcase_07 | AC | 21 ms
23,852 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 21 ms
26,024 KB |
testcase_15 | AC | 20 ms
25,888 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 25 ms
24,872 KB |
testcase_19 | AC | 45 ms
29,576 KB |
testcase_20 | AC | 32 ms
25,184 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 46 ms
29,828 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 49 ms
32,412 KB |
testcase_40 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; class TEST{ static void Main(){ Sol mySol =new Sol(); mySol.Solve(); } } class Sol{ public void Solve(){ int cnt=0; for(int i=N-1;i>=0;i--){ if(i+1+cnt<A[i] || A[i]<i ){cnt++;continue;} } Console.WriteLine(cnt); } int N; int[] A; public Sol(){ N=ri(); A=ria(); } static String rs(){return Console.ReadLine();} static int ri(){return int.Parse(Console.ReadLine());} static long rl(){return long.Parse(Console.ReadLine());} static double rd(){return double.Parse(Console.ReadLine());} static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);} static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));} static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));} static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));} }