結果

問題 No.2921 Seated in Classroom
ユーザー kou_kkkkou_kkk
提出日時 2024-12-01 01:24:28
言語 Nim
(2.0.2)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 4,746 ms
コンパイル使用メモリ 66,412 KB
実行使用メモリ 16,640 KB
最終ジャッジ日時 2024-12-01 01:24:34
合計ジャッジ時間 5,642 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
15,744 KB
testcase_01 AC 68 ms
10,112 KB
testcase_02 AC 51 ms
8,320 KB
testcase_03 AC 127 ms
16,640 KB
testcase_04 AC 122 ms
16,084 KB
testcase_05 AC 2 ms
6,820 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
var
  ans = ""

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

  ans.addInt max(v1, v2)
  ans.add "\n"

stdout.write ans
0