Submission #723836


Source Code Expand

Stdin = gets.split(" ")
A = Stdin[0].to_i
B = Stdin[1].to_i

raise 'error' unless A >= 1
raise 'error' unless B <= 1000

def countPB(pb, pb_case)
  ans = pb_case / pb
  if pb_case % pb == 0
    puts ans
  else
    puts ans + 1
  end
end

countPB(A, B)

Submission Info

Submission Time
Task A - お茶
User ginbear
Language Ruby (2.3.3)
Score 100
Code Size 267 Byte
Status AC
Exec Time 18 ms
Memory 1788 KB

Judge Result

Set Name All Testset1
Score / Max Score 50 / 50 50 / 50
Status
AC × 22
AC × 11
Set Name Test Cases
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, 019.txt, 020.txt, 021.txt
Testset1 000.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt
Case Name Status Exec Time Memory
000.txt AC 17 ms 1788 KB
001.txt AC 18 ms 1788 KB
002.txt AC 17 ms 1788 KB
003.txt AC 17 ms 1788 KB
004.txt AC 17 ms 1788 KB
005.txt AC 16 ms 1788 KB
006.txt AC 17 ms 1788 KB
007.txt AC 16 ms 1788 KB
008.txt AC 16 ms 1788 KB
009.txt AC 17 ms 1788 KB
010.txt AC 16 ms 1788 KB
011.txt AC 16 ms 1788 KB
012.txt AC 16 ms 1788 KB
013.txt AC 16 ms 1788 KB
014.txt AC 16 ms 1788 KB
015.txt AC 16 ms 1788 KB
016.txt AC 16 ms 1788 KB
017.txt AC 16 ms 1788 KB
018.txt AC 17 ms 1788 KB
019.txt AC 18 ms 1788 KB
020.txt AC 17 ms 1788 KB
021.txt AC 17 ms 1788 KB