結果

問題 No.365 ジェンガソート
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-19 15:17:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 679 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 2,444 ms
コンパイル使用メモリ 75,280 KB
実行使用メモリ 59,772 KB
最終ジャッジ日時 2024-11-17 14:09:21
合計ジャッジ時間 20,805 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
53,952 KB
testcase_01 AC 136 ms
54,228 KB
testcase_02 AC 141 ms
54,140 KB
testcase_03 AC 143 ms
53,808 KB
testcase_04 AC 141 ms
54,104 KB
testcase_05 AC 137 ms
54,056 KB
testcase_06 AC 138 ms
53,996 KB
testcase_07 AC 140 ms
53,732 KB
testcase_08 AC 141 ms
54,168 KB
testcase_09 AC 140 ms
53,960 KB
testcase_10 AC 139 ms
53,780 KB
testcase_11 AC 138 ms
53,864 KB
testcase_12 AC 139 ms
54,096 KB
testcase_13 AC 143 ms
54,120 KB
testcase_14 AC 139 ms
53,996 KB
testcase_15 AC 147 ms
53,892 KB
testcase_16 AC 630 ms
59,304 KB
testcase_17 AC 668 ms
59,384 KB
testcase_18 AC 263 ms
58,436 KB
testcase_19 AC 645 ms
59,764 KB
testcase_20 AC 377 ms
58,840 KB
testcase_21 AC 375 ms
59,592 KB
testcase_22 AC 643 ms
59,524 KB
testcase_23 AC 508 ms
59,356 KB
testcase_24 AC 573 ms
59,384 KB
testcase_25 AC 364 ms
59,456 KB
testcase_26 AC 582 ms
59,204 KB
testcase_27 AC 668 ms
59,664 KB
testcase_28 AC 564 ms
59,564 KB
testcase_29 AC 642 ms
59,504 KB
testcase_30 AC 567 ms
59,508 KB
testcase_31 AC 394 ms
59,064 KB
testcase_32 AC 410 ms
59,740 KB
testcase_33 AC 679 ms
59,552 KB
testcase_34 AC 333 ms
59,124 KB
testcase_35 AC 606 ms
59,344 KB
testcase_36 AC 554 ms
59,056 KB
testcase_37 AC 545 ms
58,932 KB
testcase_38 AC 671 ms
59,512 KB
testcase_39 AC 617 ms
59,772 KB
testcase_40 AC 660 ms
59,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int n=scanner.nextInt();
		int a[]=new int[n];
		int max=0;
		int ind=0;
		for(int i=0;i<n;i++){
			a[i]=scanner.nextInt();
			if(a[i]>max){
				max=a[i];
				ind=i;
			}
		}
		int ax[]=deepCopy(a);
		Arrays.sort(ax);
		int oks=0;
		int j=ax.length-1;
		for(int i=ind;i>=0;i--){
			if(a[i]==ax[j]){
				oks++;
				j--;
			}
		}
		System.out.println(a.length-oks);
		
	}
	
	private static int[] deepCopy(int[] array) {
		int[] newArray = new int[array.length];
		System.arraycopy(array, 0, newArray, 0, array.length);
		return newArray;
	}
}
0