結果

問題 No.1446 ハンバーグと納豆ごはん
ユーザー fukafukatanifukafukatani
提出日時 2021-06-21 23:28:43
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 244 bytes
コンパイル時間 9,550 ms
コンパイル使用メモリ 265,084 KB
実行使用メモリ 63,692 KB
最終ジャッジ日時 2024-06-22 22:56:32
合計ジャッジ時間 40,604 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 811 ms
63,692 KB
testcase_02 AC 825 ms
63,552 KB
testcase_03 WA -
testcase_04 AC 839 ms
63,652 KB
testcase_05 AC 818 ms
63,616 KB
testcase_06 AC 815 ms
63,520 KB
testcase_07 AC 815 ms
63,388 KB
testcase_08 AC 816 ms
63,420 KB
testcase_09 AC 812 ms
63,372 KB
testcase_10 WA -
testcase_11 AC 810 ms
63,400 KB
testcase_12 AC 822 ms
63,336 KB
testcase_13 AC 819 ms
63,460 KB
testcase_14 AC 828 ms
63,616 KB
testcase_15 AC 847 ms
63,544 KB
testcase_16 AC 836 ms
63,544 KB
testcase_17 AC 814 ms
63,528 KB
testcase_18 AC 841 ms
63,552 KB
testcase_19 AC 818 ms
63,524 KB
testcase_20 AC 819 ms
63,280 KB
testcase_21 AC 818 ms
63,316 KB
testcase_22 AC 826 ms
63,348 KB
testcase_23 AC 829 ms
63,512 KB
testcase_24 AC 824 ms
63,512 KB
testcase_25 AC 809 ms
63,416 KB
testcase_26 AC 817 ms
63,604 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 828 ms
63,544 KB
testcase_30 AC 817 ms
63,556 KB
testcase_31 AC 813 ms
63,512 KB
testcase_32 AC 809 ms
63,424 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 815 ms
63,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)
  val a, b, n, m = sc.nextLong
  val set1 = Seq(a, b).min
  val a1 = a - set1
  val b1 = b - set1
  val ans = set1 + Seq(a1 / n, b1 / m).max
  println(ans)
}
0