結果

問題 No.222 引き算と足し算
ユーザー javyjavy
提出日時 2015-11-28 04:40:58
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 305 ms / 1,000 ms
コード長 1,654 bytes
コンパイル時間 12,048 ms
コンパイル使用メモリ 431,168 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2024-04-30 10:39:58
合計ジャッジ時間 23,656 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
54,428 KB
testcase_01 AC 295 ms
54,288 KB
testcase_02 AC 300 ms
54,312 KB
testcase_03 AC 298 ms
54,292 KB
testcase_04 AC 294 ms
54,168 KB
testcase_05 AC 295 ms
54,324 KB
testcase_06 AC 295 ms
54,176 KB
testcase_07 AC 294 ms
54,352 KB
testcase_08 AC 294 ms
54,372 KB
testcase_09 AC 295 ms
54,296 KB
testcase_10 AC 298 ms
54,172 KB
testcase_11 AC 296 ms
54,268 KB
testcase_12 AC 298 ms
54,288 KB
testcase_13 AC 295 ms
54,304 KB
testcase_14 AC 293 ms
54,312 KB
testcase_15 AC 295 ms
54,168 KB
testcase_16 AC 299 ms
54,264 KB
testcase_17 AC 297 ms
54,300 KB
testcase_18 AC 300 ms
54,196 KB
testcase_19 AC 296 ms
54,420 KB
testcase_20 AC 296 ms
54,280 KB
testcase_21 AC 292 ms
54,072 KB
testcase_22 AC 296 ms
54,064 KB
testcase_23 AC 295 ms
54,180 KB
testcase_24 AC 303 ms
54,396 KB
testcase_25 AC 296 ms
54,284 KB
testcase_26 AC 305 ms
54,364 KB
testcase_27 AC 297 ms
54,332 KB
testcase_28 AC 293 ms
54,384 KB
testcase_29 AC 294 ms
54,292 KB
testcase_30 AC 293 ms
54,256 KB
testcase_31 AC 293 ms
54,192 KB
testcase_32 AC 300 ms
54,284 KB
testcase_33 AC 295 ms
54,240 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:8:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package Yukicoder

import java.util.regex.Pattern

/**
 * Created by hichikawa on 2015/11/12.
 */
fun main(args: Array<String>) {
    fun readLineLongArray(): List<Long> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toLong() }
        return ret
    }

    fun readLineLong(): Long {
        val str = readLine() as String
        return str.toLong()
    }

    fun readLineInt(): Int {
        val str = readLine() as String
        return str.toInt()
    }

    fun readLineIntArray() : List<Int> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toInt() }
        return ret
    }

    fun readLineDoubleArray(): List<Double> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toDouble() }
        return ret
    }



    var str = readLine() as String
    val pTasu : Pattern = Pattern.compile("([\\-\\+]?\\d+)\\+([\\-\\+]?\\d+)")
    val pHiku : Pattern = Pattern.compile("([\\-\\+]?\\d+)\\-([\\-\\+]?\\d+)")
//    val p : Pattern = Pattern.compile("(\\d+)\\+")
    while (true) {
        val mTasu = pTasu.matcher(str)
        if (mTasu.find()) {
            str = mTasu.replaceFirst((mTasu.group(1).toInt()-mTasu.group(2).toInt()).toString())
//            println(str)
            continue
        }
        val mHiku = pHiku.matcher(str)
        if (mHiku.find()) {
            str = mHiku.replaceFirst((mHiku.group(1).toInt()+mHiku.group(2).toInt()).toString())
//            println(str)
            continue
        }
        break
    }
    println(str)
}
0