結果
問題 | No.446 ゆきこーだーの雨と雪 (1) |
ユーザー | Burden |
提出日時 | 2016-12-30 15:15:15 |
言語 | Scala(Beta) (3.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 345 bytes |
コンパイル時間 | 10,175 ms |
コンパイル使用メモリ | 244,196 KB |
実行使用メモリ | 64,392 KB |
最終ジャッジ日時 | 2024-06-29 22:06:07 |
合計ジャッジ時間 | 23,132 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 857 ms
64,112 KB |
testcase_01 | AC | 863 ms
64,144 KB |
testcase_02 | AC | 840 ms
64,036 KB |
testcase_03 | AC | 846 ms
64,084 KB |
testcase_04 | AC | 863 ms
64,084 KB |
testcase_05 | AC | 847 ms
64,176 KB |
testcase_06 | WA | - |
testcase_07 | AC | 845 ms
64,212 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 842 ms
63,956 KB |
testcase_11 | AC | 811 ms
64,104 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 833 ms
64,100 KB |
testcase_15 | WA | - |
testcase_16 | AC | 850 ms
64,292 KB |
ソースコード
import scala.io.StdIn.readLine import scala.util.matching.Regex object RainSnow446 { def main(args:Array[String]): Unit ={ def isNumContain(str:String) = str.matches("""[0-9]+""") val a = readLine() val b = readLine() if(isNumContain(a+b) && (a.toInt < b.toInt)) println("OK") else println("NG") } }