結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー | soi09476291 |
提出日時 | 2019-11-17 07:42:45 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,601 bytes |
コンパイル時間 | 957 ms |
コンパイル使用メモリ | 109,924 KB |
実行使用メモリ | 37,268 KB |
最終ジャッジ日時 | 2024-09-25 05:45:51 |
合計ジャッジ時間 | 13,443 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
evil01.txt | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; namespace ConsoleApp11 { class Program { static void Main(string[] args) { long min = 0; long N = long.Parse(Console.ReadLine()); var input = Console.ReadLine().Split(' '); long[] X = new long[N]; for(long i = 0; i < N; i++) { X[i] = long.Parse(input[i]); } for(long i = 0; i < N - i; i++) { for(long j = i + 1; j < N; j++) { if(min == 0 && X[i] != X[j]) { if(X[i] - X[j] > 0) { min = X[i] - X[j]; } else if(X[j] - X[i] > 0) { min = X[j] - X[i]; } } else if(X[i] != X[j]) { if(X[i] - X[j] > 0) { if(min > X[i] - X[j]) { min = X[i] - X[j]; } } else if(X[j] - X[i] > 0) { if(min > X[j] - X[i]) { min = X[j] - X[i]; } } } } } Console.WriteLine(min); } } }