結果

問題 No.1592 Tenkei 90
ユーザー 箱星箱星
提出日時 2021-07-09 21:23:19
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 332 ms / 1,000 ms
コード長 736 bytes
コンパイル時間 12,393 ms
コンパイル使用メモリ 433,168 KB
実行使用メモリ 55,144 KB
最終ジャッジ日時 2024-07-01 14:56:21
合計ジャッジ時間 19,706 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
54,820 KB
testcase_01 AC 331 ms
54,804 KB
testcase_02 AC 331 ms
54,944 KB
testcase_03 AC 328 ms
54,964 KB
testcase_04 AC 327 ms
55,144 KB
testcase_05 AC 322 ms
54,880 KB
testcase_06 AC 324 ms
55,088 KB
testcase_07 AC 324 ms
54,900 KB
testcase_08 AC 327 ms
55,076 KB
testcase_09 AC 325 ms
54,848 KB
testcase_10 AC 323 ms
54,788 KB
testcase_11 AC 324 ms
54,908 KB
testcase_12 AC 323 ms
54,844 KB
testcase_13 AC 323 ms
55,108 KB
testcase_14 AC 325 ms
54,888 KB
testcase_15 AC 327 ms
54,908 KB
testcase_16 AC 323 ms
54,976 KB
testcase_17 AC 325 ms
54,840 KB
testcase_18 AC 330 ms
54,840 KB
testcase_19 AC 326 ms
55,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val s = nextLine().toCharArray().sorted().joinToString("")
    val t = "kyoprotenkei90".toCharArray().sorted().joinToString("")
    println(if (s == t) "Yes" else "No")
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0