結果

問題 No.128 お年玉(1)
ユーザー 💕💖💞💕💖💞
提出日時 2017-07-02 13:54:57
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 317 ms / 5,000 ms
コード長 138 bytes
コンパイル時間 11,654 ms
コンパイル使用メモリ 442,320 KB
実行使用メモリ 56,772 KB
最終ジャッジ日時 2024-10-01 10:36:48
合計ジャッジ時間 20,239 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
56,536 KB
testcase_01 AC 300 ms
56,752 KB
testcase_02 AC 303 ms
56,612 KB
testcase_03 AC 307 ms
56,532 KB
testcase_04 AC 299 ms
56,760 KB
testcase_05 AC 298 ms
56,656 KB
testcase_06 AC 300 ms
56,696 KB
testcase_07 AC 296 ms
56,704 KB
testcase_08 AC 299 ms
56,596 KB
testcase_09 AC 307 ms
56,664 KB
testcase_10 AC 317 ms
56,640 KB
testcase_11 AC 313 ms
56,592 KB
testcase_12 AC 305 ms
56,540 KB
testcase_13 AC 306 ms
56,756 KB
testcase_14 AC 302 ms
56,624 KB
testcase_15 AC 301 ms
56,536 KB
testcase_16 AC 301 ms
56,552 KB
testcase_17 AC 301 ms
56,756 KB
testcase_18 AC 302 ms
56,696 KB
testcase_19 AC 300 ms
56,532 KB
testcase_20 AC 303 ms
56,772 KB
testcase_21 AC 304 ms
56,536 KB
testcase_22 AC 304 ms
56,628 KB
testcase_23 AC 301 ms
56,708 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