結果

問題 No.490 yukiソート
ユーザー fal_rndfal_rnd
提出日時 2019-02-19 16:31:54
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,274 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 14,541 ms
コンパイル使用メモリ 266,276 KB
実行使用メモリ 65,040 KB
最終ジャッジ日時 2024-11-16 16:58:12
合計ジャッジ時間 55,733 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 961 ms
63,568 KB
testcase_01 AC 985 ms
64,196 KB
testcase_02 AC 993 ms
64,252 KB
testcase_03 AC 970 ms
64,248 KB
testcase_04 AC 1,085 ms
64,336 KB
testcase_05 AC 1,059 ms
64,128 KB
testcase_06 AC 1,073 ms
64,420 KB
testcase_07 AC 1,069 ms
64,500 KB
testcase_08 AC 1,064 ms
64,108 KB
testcase_09 AC 1,060 ms
64,232 KB
testcase_10 AC 1,080 ms
64,240 KB
testcase_11 AC 1,087 ms
64,316 KB
testcase_12 AC 1,065 ms
64,452 KB
testcase_13 AC 1,059 ms
64,540 KB
testcase_14 AC 1,216 ms
64,716 KB
testcase_15 AC 1,269 ms
64,824 KB
testcase_16 AC 1,229 ms
64,564 KB
testcase_17 AC 1,235 ms
64,836 KB
testcase_18 AC 1,226 ms
64,664 KB
testcase_19 AC 1,231 ms
64,616 KB
testcase_20 AC 1,269 ms
65,040 KB
testcase_21 AC 1,273 ms
64,720 KB
testcase_22 AC 1,274 ms
64,616 KB
testcase_23 AC 1,231 ms
64,436 KB
testcase_24 AC 978 ms
64,112 KB
testcase_25 AC 964 ms
63,872 KB
testcase_26 AC 974 ms
64,024 KB
testcase_27 AC 960 ms
64,100 KB
testcase_28 AC 978 ms
64,160 KB
testcase_29 AC 967 ms
64,108 KB
testcase_30 AC 980 ms
64,060 KB
testcase_31 AC 1,006 ms
64,164 KB
testcase_32 AC 978 ms
63,984 KB
testcase_33 AC 981 ms
64,280 KB
testcase_34 AC 973 ms
64,060 KB
testcase_35 AC 990 ms
63,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.collection.mutable._

object KyoPRO{
	implicit class Swap[T](v:Seq[T]) {
		def swap(i:Int,j:Int):Unit = {
			val	t=v(i)
			v(i)=v(j)
			v(j)=t
		}
	}
}
import KyoPRO._

object Main {
	def main(A:Array[String])={
		val s = new java.util.Scanner(System.in)
		val n=s.nextInt
		val a=Array.fill(n)(s.nextInt)
		for(i<-0 to n*2-4){
			for(j<-(0 to n-2).takeWhile(j=>j<i-j)){
				if(i-j<n&&a(j)>a(i-j))
					a.seq.swap(j,i-j)
			}
		}
		println(a mkString " ")
	}
}
0