結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
55,208 KB
testcase_01 AC 332 ms
55,372 KB
testcase_02 AC 330 ms
55,100 KB
testcase_03 AC 327 ms
55,220 KB
testcase_04 AC 324 ms
55,240 KB
testcase_05 AC 336 ms
55,088 KB
testcase_06 AC 326 ms
55,116 KB
testcase_07 AC 327 ms
55,120 KB
testcase_08 AC 325 ms
55,116 KB
testcase_09 AC 326 ms
55,308 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