結果

問題 No.604 誕生日のお小遣い
ユーザー 💕💖💞💕💖💞
提出日時 2018-02-16 02:46:41
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 206 bytes
コンパイル時間 10,912 ms
コンパイル使用メモリ 435,360 KB
実行使用メモリ 57,008 KB
最終ジャッジ日時 2024-11-20 13:48:54
合計ジャッジ時間 19,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 317 ms
51,928 KB
testcase_02 AC 315 ms
51,776 KB
testcase_03 AC 320 ms
51,816 KB
testcase_04 AC 315 ms
51,608 KB
testcase_05 AC 316 ms
51,652 KB
testcase_06 AC 315 ms
51,596 KB
testcase_07 AC 318 ms
51,728 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 316 ms
51,652 KB
testcase_11 AC 316 ms
51,620 KB
testcase_12 AC 319 ms
51,864 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 321 ms
51,756 KB
testcase_16 WA -
testcase_17 AC 313 ms
51,924 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val (cycle, income, obj) = readLine()!!.split(" ").map { it.toLong() }

  val batch = income + cycle - 1

  val target = obj%batch
  println( cycle*(obj/batch) + target ) 
}
0