結果

問題 No.388 階段 (1)
ユーザー samesame
提出日時 2020-02-16 14:31:44
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 878 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 7,960 ms
コンパイル使用メモリ 248,408 KB
実行使用メモリ 63,408 KB
最終ジャッジ日時 2024-10-06 14:28:59
合計ジャッジ時間 22,706 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 849 ms
63,088 KB
testcase_01 AC 854 ms
63,240 KB
testcase_02 AC 869 ms
63,236 KB
testcase_03 AC 853 ms
63,280 KB
testcase_04 AC 874 ms
63,220 KB
testcase_05 AC 846 ms
63,356 KB
testcase_06 AC 858 ms
63,212 KB
testcase_07 AC 845 ms
63,084 KB
testcase_08 AC 851 ms
63,316 KB
testcase_09 AC 878 ms
63,180 KB
testcase_10 AC 874 ms
63,276 KB
testcase_11 AC 856 ms
63,408 KB
testcase_12 AC 852 ms
63,296 KB
testcase_13 AC 842 ms
63,256 KB
testcase_14 AC 842 ms
63,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object No388 extends App {
  val sc = new Scanner(System.in)
  val s = sc.nextInt()
  val f = sc.nextInt()
  println(calc(s, f))

  def calc(s: Int, f: Int): Int = (s + f) / f
}
0