結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 270 ms
54,116 KB
testcase_01 AC 264 ms
54,300 KB
testcase_02 AC 264 ms
54,160 KB
testcase_03 AC 267 ms
54,352 KB
testcase_04 AC 266 ms
54,256 KB
testcase_05 AC 263 ms
54,312 KB
testcase_06 AC 262 ms
54,380 KB
testcase_07 AC 269 ms
54,496 KB
testcase_08 AC 266 ms
54,372 KB
testcase_09 AC 266 ms
54,312 KB
testcase_10 AC 264 ms
54,388 KB
testcase_11 AC 269 ms
54,164 KB
testcase_12 AC 264 ms
54,120 KB
testcase_13 AC 262 ms
54,432 KB
testcase_14 AC 263 ms
54,112 KB
testcase_15 AC 266 ms
54,248 KB
testcase_16 AC 267 ms
54,320 KB
testcase_17 AC 260 ms
54,396 KB
testcase_18 AC 266 ms
54,256 KB
testcase_19 AC 265 ms
54,372 KB
testcase_20 AC 262 ms
54,452 KB
testcase_21 AC 260 ms
54,148 KB
testcase_22 AC 264 ms
54,364 KB
testcase_23 AC 261 ms
54,208 KB
testcase_24 AC 261 ms
54,312 KB
testcase_25 AC 264 ms
54,420 KB
testcase_26 AC 266 ms
54,252 KB
testcase_27 AC 263 ms
54,396 KB
testcase_28 AC 274 ms
54,260 KB
testcase_29 AC 267 ms
54,368 KB
testcase_30 AC 269 ms
54,492 KB
testcase_31 AC 258 ms
54,328 KB
testcase_32 AC 261 ms
54,364 KB
testcase_33 AC 266 ms
54,388 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