結果
問題 | No.35 タイパー高橋 |
ユーザー | shinwisteria |
提出日時 | 2018-03-04 16:34:47 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 210 ms / 5,000 ms |
コード長 | 461 bytes |
コンパイル時間 | 3,338 ms |
コンパイル使用メモリ | 85,888 KB |
実行使用メモリ | 44,900 KB |
最終ジャッジ日時 | 2024-07-08 01:17:21 |
合計ジャッジ時間 | 4,587 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 204 ms
44,124 KB |
testcase_01 | AC | 210 ms
43,848 KB |
testcase_02 | AC | 210 ms
44,900 KB |
testcase_03 | AC | 210 ms
44,504 KB |
ソースコード
package m.shin; import java.util.Scanner; public class Con35 { public static void main(String[] args) { Scanner s = new Scanner(System.in); int N = s.nextInt() , ok = 0 , batsu = 0; for(int i = 0;i < N;i++){ int T = s.nextInt(); String str = s.next(); T = 12 * T / 1000; if(T >= str.length()){ ok += str.length(); }else{ ok += T; batsu += str.length()-T; } } s.close(); System.out.println(ok + " " + batsu); } }