結果
問題 | No.35 タイパー高橋 |
ユーザー | kenji_shioya |
提出日時 | 2016-06-23 01:53:52 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 247 ms / 5,000 ms |
コード長 | 434 bytes |
コンパイル時間 | 3,600 ms |
コンパイル使用メモリ | 76,464 KB |
実行使用メモリ | 45,208 KB |
最終ジャッジ日時 | 2024-10-11 19:47:35 |
合計ジャッジ時間 | 5,365 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 239 ms
44,704 KB |
testcase_01 | AC | 240 ms
44,648 KB |
testcase_02 | AC | 247 ms
45,208 KB |
testcase_03 | AC | 246 ms
45,140 KB |
ソースコード
import java.util.*; public class Exercise113{ public static void main (String[] args){ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int r = 0; int w = 0; for(int i = 0; i < n; i++){ int t = sc.nextInt(); String s = sc.next(); r += Math.min(t * 12 / 1000, s.length()); w += s.length() - Math.min(t * 12 / 1000, s.length()); } System.out.println(r + " " + w); } }