結果
問題 | No.35 タイパー高橋 |
ユーザー | yuya178 |
提出日時 | 2017-06-23 00:08:18 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 157 ms / 5,000 ms |
コード長 | 2,282 bytes |
コンパイル時間 | 2,367 ms |
コンパイル使用メモリ | 82,256 KB |
実行使用メモリ | 41,856 KB |
最終ジャッジ日時 | 2024-10-02 12:25:24 |
合計ジャッジ時間 | 3,469 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
41,448 KB |
testcase_01 | AC | 124 ms
40,988 KB |
testcase_02 | AC | 149 ms
41,804 KB |
testcase_03 | AC | 157 ms
41,856 KB |
ソースコード
import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Arrays; import java.util.InputMismatchException; import java.io.OutputStream; import java.util.StringTokenizer; import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.HashMap; import java.util.Map; import java.util.ArrayList; import java.util.List; import java.util.Scanner; /** * Built using CHelper plug-in * Actual solution is at the top */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; InputReader in = new InputReader(inputStream); PrintWriter out = new PrintWriter(outputStream); Task solver = new Task(); solver.solve(1, in, out); out.close(); } static class Task { public void solve(int testNumber, InputReader in, PrintWriter out) { int N = in.nextInt(); int s = 0; int f = 0; for(int i=0; i<N; i++){ int T = in.nextInt(); String S = in.next(); int res = T*12/1000-S.length(); if(res>=0) s+=S.length(); else{ s+=T*12/1000; f+=S.length()-T*12/1000; } } out.println(s+" "+f); } } static class InputReader { public BufferedReader reader; public StringTokenizer tokenizer; public InputReader(InputStream stream) { reader = new BufferedReader(new InputStreamReader(stream), 32768); tokenizer = null; } public String next() { while (tokenizer == null || !tokenizer.hasMoreTokens()) { try { tokenizer = new StringTokenizer(reader.readLine()); } catch (IOException e) { throw new RuntimeException(e); } } return tokenizer.nextToken(); } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } } }