結果
問題 |
No.35 タイパー高橋
|
ユーザー |
|
提出日時 | 2021-05-06 23:38:10 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 55 ms / 5,000 ms |
コード長 | 207 bytes |
コンパイル時間 | 301 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 62,208 KB |
最終ジャッジ日時 | 2024-09-14 14:36:41 |
合計ジャッジ時間 | 1,034 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 |
ソースコード
N = int(input()) correct = 0 total = 0 for _ in range(N): T,S = map(str,input().split()) T = int(T) correct += min(T*12//1000,len(S)) total += len(S) print(correct, total-correct)