結果
問題 | No.694 square1001 and Permutation 3 |
ユーザー | ekidenp |
提出日時 | 2018-06-09 00:05:51 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 593 bytes |
コンパイル時間 | 864 ms |
コンパイル使用メモリ | 107,736 KB |
実行使用メモリ | 39,984 KB |
最終ジャッジ日時 | 2024-06-30 11:28:48 |
合計ジャッジ時間 | 6,540 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 27 ms
23,640 KB |
testcase_06 | AC | 28 ms
23,636 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
コンパイルメッセージ
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.Generic; class Program { static void Main(string[] args) { string str = Console.ReadLine(); long N = long.Parse(str); long[] A = new long[N]; for(var i=0;i<N;i++){ string str2 = Console.ReadLine(); A[i] = long.Parse(str2); } long cnt = 0; long[] C = new long[N]; for(var i=0;i<N;i++){ for(var j=0;j<N;j++){ if(A[i] > A[j]){ C[i] += 1; if(j > i){ cnt += 1; } } } } Console.WriteLine(cnt); for(var i=1;i<N;i++){ cnt = cnt - (C[i-1]) + (N - 1 - C[i-1]); Console.WriteLine(cnt); } } }