結果

問題 No.591 (^o^)/
ユーザー rkyrky
提出日時 2017-11-26 00:54:20
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 10,540 ms
コンパイル使用メモリ 430,700 KB
実行使用メモリ 55,312 KB
最終ジャッジ日時 2024-11-20 13:10:45
合計ジャッジ時間 13,159 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
55,004 KB
testcase_01 AC 314 ms
55,136 KB
testcase_02 AC 315 ms
55,104 KB
testcase_03 AC 314 ms
55,288 KB
testcase_04 AC 312 ms
55,156 KB
testcase_05 AC 308 ms
55,156 KB
testcase_06 AC 308 ms
55,084 KB
testcase_07 AC 306 ms
55,312 KB
testcase_08 AC 317 ms
55,136 KB
testcase_09 AC 307 ms
55,300 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

import java.util.Scanner
fun main(args: Array<String>){
	var input = Scanner(System. `in`)
	var str1: String = input.next()
	var str2: String = input.next()
	println("($str1$str2$str1)/")
}
0