結果

問題 No.35 タイパー高橋
ユーザー Suunn
提出日時 2018-11-20 05:25:13
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 360 bytes
コンパイル時間 2,215 ms
コンパイル使用メモリ 74,984 KB
実行使用メモリ 57,068 KB
最終ジャッジ日時 2024-12-24 15:23:03
合計ジャッジ時間 3,793 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int ans = 0;
		for(int i=0;i<N;i++){
			int T = sc.nextInt();
			String S = sc.next();
			int L = S.length();
			if(12*T/1000>=L){
				ans++;
			}
		}
		System.out.println(ans);
	}
}
0