結果

問題 No.1592 Tenkei 90
ユーザー Kenneth YongKenneth Yong
提出日時 2021-07-09 22:34:07
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 294 ms / 1,000 ms
コード長 234 bytes
コンパイル時間 12,223 ms
コンパイル使用メモリ 415,404 KB
実行使用メモリ 53,908 KB
最終ジャッジ日時 2023-09-14 09:52:39
合計ジャッジ時間 18,054 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
53,828 KB
testcase_01 AC 290 ms
53,860 KB
testcase_02 AC 293 ms
53,908 KB
testcase_03 AC 294 ms
53,768 KB
testcase_04 AC 293 ms
53,844 KB
testcase_05 AC 293 ms
53,772 KB
testcase_06 AC 292 ms
53,768 KB
testcase_07 AC 293 ms
53,716 KB
testcase_08 AC 289 ms
53,720 KB
testcase_09 AC 290 ms
53,648 KB
testcase_10 AC 292 ms
53,768 KB
testcase_11 AC 289 ms
53,720 KB
testcase_12 AC 294 ms
53,904 KB
testcase_13 AC 294 ms
53,832 KB
testcase_14 AC 288 ms
53,836 KB
testcase_15 AC 292 ms
53,900 KB
testcase_16 AC 291 ms
53,752 KB
testcase_17 AC 292 ms
53,884 KB
testcase_18 AC 292 ms
53,740 KB
testcase_19 AC 293 ms
53,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
	val s = "kyoprotenkei90".toCharArray().sorted();
	val t = readLine()!!.toCharArray().sorted();
	println(if (s == t) "Yes" else "No");
}
/*
C:\Users\kenne\OneDrive\Desktop\competitive_programming\kotlinmain.kt
*/
0