結果

問題 No.1139 Slime Race
ユーザー kou_kkkkou_kkk
提出日時 2023-09-04 08:22:28
言語 Nim
(2.0.2)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 168 bytes
コンパイル時間 5,491 ms
コンパイル使用メモリ 68,904 KB
実行使用メモリ 15,084 KB
最終ジャッジ日時 2023-09-04 08:22:37
合計ジャッジ時間 8,424 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 30 ms
14,212 KB
testcase_11 AC 22 ms
12,300 KB
testcase_12 AC 36 ms
15,084 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 26 ms
14,464 KB
testcase_15 AC 24 ms
10,548 KB
testcase_16 AC 32 ms
15,020 KB
testcase_17 AC 28 ms
14,648 KB
testcase_18 AC 19 ms
10,056 KB
testcase_19 AC 15 ms
8,644 KB
testcase_20 AC 14 ms
8,232 KB
testcase_21 AC 18 ms
9,832 KB
testcase_22 AC 21 ms
11,320 KB
testcase_23 AC 35 ms
13,984 KB
testcase_24 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math, sequtils, strutils

let
  d = parseInt stdin.readLine.split.`[]` 1
  _ = readLine stdin
  v = stdin.readLine.split.map parseInt

echo succ d.pred div v.sum
0