結果
| 問題 |
No.79 過小評価ダメ・ゼッタイ
|
| コンテスト | |
| ユーザー |
pirorirori_n712
|
| 提出日時 | 2018-07-24 01:06:37 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 219 bytes |
| コンパイル時間 | 2,444 ms |
| コンパイル使用メモリ | 106,240 KB |
| 実行使用メモリ | 27,904 KB |
| 最終ジャッジ日時 | 2025-01-02 17:15:31 |
| 合計ジャッジ時間 | 4,362 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | WA * 4 RE * 18 |
コンパイルメッセージ
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;
class No79{
static void Main(){
var a=Int32.Parse(Console.ReadLine());
var b=Console.ReadLine().Split(' ').GroupBy(x=>x).Max();
Console.WriteLine(b);
}
}
pirorirori_n712