結果
問題 | No.35 タイパー高橋 |
ユーザー | l1267976 |
提出日時 | 2017-03-08 20:52:50 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 317 ms / 5,000 ms |
コード長 | 674 bytes |
コンパイル時間 | 3,547 ms |
コンパイル使用メモリ | 76,156 KB |
実行使用メモリ | 60,872 KB |
最終ジャッジ日時 | 2024-06-23 19:34:21 |
合計ジャッジ時間 | 5,528 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 317 ms
60,224 KB |
testcase_01 | AC | 299 ms
60,732 KB |
testcase_02 | AC | 315 ms
60,872 KB |
testcase_03 | AC | 313 ms
60,852 KB |
ソースコード
import java.util.Scanner; public class No35 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int typeCnt = 0; int missCnt = 0; for (int i = 0; i < n; i++) { double t = sc.nextDouble(); String s = sc.next(); int type = (int) Math.floor((12 * t) / 1000); if (type > s.length()) { type = s.length(); } int miss = s.length() - type; typeCnt += type; missCnt += miss; } System.out.println(typeCnt + " " + missCnt); sc.close(); } }