結果
問題 | No.35 タイパー高橋 |
ユーザー | Hiroaki Kono |
提出日時 | 2017-10-28 07:56:17 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 237 ms / 5,000 ms |
コード長 | 586 bytes |
コンパイル時間 | 4,023 ms |
コンパイル使用メモリ | 77,356 KB |
実行使用メモリ | 45,524 KB |
最終ジャッジ日時 | 2024-05-01 20:31:04 |
合計ジャッジ時間 | 5,961 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 232 ms
44,248 KB |
testcase_01 | AC | 226 ms
45,524 KB |
testcase_02 | AC | 232 ms
44,812 KB |
testcase_03 | AC | 237 ms
44,700 KB |
ソースコード
import java.util.Scanner; public class No35 { public static void main(String[] args) { Scanner s = new Scanner(System.in); int words = s.nextInt(); int typed = 0; int missed = 0; for (int i = 0; i < words; i++) { int ms = s.nextInt(); String word = s.next(); int tmp = word.length() - ms * 12 / 1000; if (tmp < 0) { tmp = 0; } typed += word.length() - tmp; missed += tmp; } System.out.println(typed + " " + missed); } }