結果
問題 | No.35 タイパー高橋 |
ユーザー | scache |
提出日時 | 2014-11-25 16:57:08 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 210 ms / 5,000 ms |
コード長 | 500 bytes |
コンパイル時間 | 4,278 ms |
コンパイル使用メモリ | 77,104 KB |
実行使用メモリ | 44,760 KB |
最終ジャッジ日時 | 2024-06-10 22:19:33 |
合計ジャッジ時間 | 5,056 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 206 ms
43,880 KB |
testcase_01 | AC | 206 ms
44,396 KB |
testcase_02 | AC | 210 ms
44,760 KB |
testcase_03 | AC | 209 ms
44,364 KB |
ソースコード
import java.util.Scanner; public class Main35 { public static void main(String[] args) { Main35 p = new Main35(); } public Main35() { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int resOk = 0; int resMiss = 0; for(int i=0;i<n;i++){ int t = sc.nextInt(); int s = sc.next().length(); resOk += Math.min(12*t/1000, s); resMiss += Math.max(0, s-12*t/1000); } System.out.println(resOk + " " + resMiss); } }