結果

問題 No.2921 Seated in Classroom
ユーザー kou_kkkkou_kkk
提出日時 2024-12-01 01:17:56
言語 Nim
(2.0.2)
結果
AC  
実行時間 391 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 4,326 ms
コンパイル使用メモリ 66,956 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-12-01 01:18:05
合計ジャッジ時間 7,940 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
10,624 KB
testcase_01 AC 192 ms
7,424 KB
testcase_02 AC 141 ms
6,816 KB
testcase_03 AC 351 ms
11,300 KB
testcase_04 AC 391 ms
12,416 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math, sequtils, strutils

let
  t = parseInt readLine stdin
  nms = t.newSeqWith stdin.readLine.split.map parseInt

for nm in nms:
  let
    n = nm[0]
    m = nm[1]
    sum = n + m
    v1 = n.ceilDiv 4
    v2 = sum.ceilDiv 8

  echo max(v1, v2)
0