結果

問題 No.692 square1001 and Permutation 1
ユーザー 💕💖💞💕💖💞
提出日時 2018-06-14 23:05:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 10,407 ms
コンパイル使用メモリ 426,056 KB
実行使用メモリ 49,972 KB
最終ジャッジ日時 2024-11-20 16:20:10
合計ジャッジ時間 13,317 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
49,512 KB
testcase_01 AC 288 ms
49,972 KB
testcase_02 AC 287 ms
49,824 KB
testcase_03 AC 291 ms
49,744 KB
testcase_04 AC 293 ms
49,532 KB
testcase_05 AC 291 ms
49,820 KB
testcase_06 AC 295 ms
49,512 KB
testcase_07 AC 291 ms
49,724 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val n = readLine()!!.toInt()
  when { n > 1 -> "Petr"; else -> "square1001" }.run(::println)
}
0