結果

問題 No.128 お年玉(1)
ユーザー 💕💖💞💕💖💞
提出日時 2017-07-02 13:54:57
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 350 ms / 5,000 ms
コード長 138 bytes
コンパイル時間 12,797 ms
コンパイル使用メモリ 431,888 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-04-08 19:09:31
合計ジャッジ時間 21,820 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
54,316 KB
testcase_01 AC 331 ms
54,304 KB
testcase_02 AC 334 ms
54,316 KB
testcase_03 AC 337 ms
54,312 KB
testcase_04 AC 336 ms
54,316 KB
testcase_05 AC 324 ms
54,296 KB
testcase_06 AC 327 ms
54,320 KB
testcase_07 AC 334 ms
54,316 KB
testcase_08 AC 325 ms
54,320 KB
testcase_09 AC 331 ms
54,316 KB
testcase_10 AC 321 ms
54,324 KB
testcase_11 AC 326 ms
54,300 KB
testcase_12 AC 321 ms
54,308 KB
testcase_13 AC 324 ms
54,308 KB
testcase_14 AC 330 ms
54,320 KB
testcase_15 AC 330 ms
54,308 KB
testcase_16 AC 350 ms
54,316 KB
testcase_17 AC 320 ms
54,308 KB
testcase_18 AC 323 ms
54,296 KB
testcase_19 AC 331 ms
54,312 KB
testcase_20 AC 327 ms
54,312 KB
testcase_21 AC 335 ms
54,312 KB
testcase_22 AC 342 ms
54,316 KB
testcase_23 AC 324 ms
54,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) {
          ^

ソースコード

diff #

fun main( args : Array<String> ) {
  (1..2).map {
    readLine()!!.toLong()
  }.let {
    val (m, n) = it
    println(m/1000/n*1000)
  }
}
0