結果
| 問題 |
No.365 ジェンガソート
|
| コンテスト | |
| ユーザー |
mori_chibi
|
| 提出日時 | 2017-08-21 16:25:13 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 62 ms / 2,000 ms |
| コード長 | 478 bytes |
| コンパイル時間 | 1,052 ms |
| コンパイル使用メモリ | 105,472 KB |
| 実行使用メモリ | 26,112 KB |
| 最終ジャッジ日時 | 2024-10-15 00:51:55 |
| 合計ジャッジ時間 | 4,029 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 41 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Linq;
namespace GengaSort
{
class Program
{
static void Main(string[] args)
{
int N = int.Parse(Console.ReadLine());
int[] An = Console.ReadLine().Split(' ').Select(s => int.Parse(s)).ToArray();
int count = N;
for (int i = An.Length-1; i > -1; i--)
{
if (An[i] == count) count--;
}
Console.WriteLine(count);
}
}
}
mori_chibi