結果
問題 | No.35 タイパー高橋 |
ユーザー | Grenache |
提出日時 | 2015-09-22 23:34:49 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 204 ms / 5,000 ms |
コード長 | 502 bytes |
コンパイル時間 | 3,134 ms |
コンパイル使用メモリ | 74,928 KB |
実行使用メモリ | 43,272 KB |
最終ジャッジ日時 | 2024-07-19 08:43:08 |
合計ジャッジ時間 | 4,622 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 198 ms
42,880 KB |
testcase_01 | AC | 202 ms
42,964 KB |
testcase_02 | AC | 204 ms
43,272 KB |
testcase_03 | AC | 203 ms
42,816 KB |
ソースコード
import java.util.Scanner; public class Main_yukicoder35 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int ret = 0; int sn = 0; for (int i = 0; i < n; i++) { int t = sc.nextInt(); int s = sc.next().length(); ret += Math.min(s, 12 * t / 1000); sn += s; } System.out.printf("%d %d\n", ret, sn - ret); sc.close(); } }