結果
問題 | No.35 タイパー高橋 |
ユーザー | uafr_cs |
提出日時 | 2015-05-10 20:26:27 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 234 ms / 5,000 ms |
コード長 | 522 bytes |
コンパイル時間 | 3,307 ms |
コンパイル使用メモリ | 76,332 KB |
実行使用メモリ | 45,348 KB |
最終ジャッジ日時 | 2024-07-05 22:01:44 |
合計ジャッジ時間 | 4,786 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 231 ms
43,924 KB |
testcase_01 | AC | 225 ms
44,648 KB |
testcase_02 | AC | 234 ms
44,452 KB |
testcase_03 | AC | 231 ms
45,348 KB |
ソースコード
import java.util.Arrays; import java.util.LinkedList; import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); final int N = sc.nextInt(); int ok = 0, miss = 0; for(int i = 0; i < N; i++){ final int T = sc.nextInt(); final String S = sc.next(); final int can_type = 12 * T / 1000; ok += Math.min(can_type, S.length()); miss += Math.max(S.length() - can_type, 0); } System.out.println(ok + " " + miss); } }