結果
問題 | No.35 タイパー高橋 |
ユーザー | tenten |
提出日時 | 2020-11-10 10:20:48 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 243 ms / 5,000 ms |
コード長 | 536 bytes |
コンパイル時間 | 3,225 ms |
コンパイル使用メモリ | 86,512 KB |
実行使用メモリ | 45,192 KB |
最終ジャッジ日時 | 2024-07-22 17:20:07 |
合計ジャッジ時間 | 4,696 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 238 ms
44,440 KB |
testcase_01 | AC | 243 ms
45,192 KB |
testcase_02 | AC | 243 ms
44,700 KB |
testcase_03 | AC | 242 ms
44,536 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int win = 0; int lose = 0; for (int i = 0; i < n; i++) { int mili = sc.nextInt(); int length = sc.next().length(); int max = 12 * mili / 1000; int count = Math.min(length, max); win += count; lose += length - count; } System.out.println(win + " " + lose); } }