結果
問題 | No.3100 始業式 |
ユーザー | Asahi |
提出日時 | 2023-03-31 21:44:09 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 487 bytes |
コンパイル時間 | 2,666 ms |
コンパイル使用メモリ | 74,916 KB |
実行使用メモリ | 48,020 KB |
最終ジャッジ日時 | 2024-09-23 00:21:20 |
合計ジャッジ時間 | 3,329 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ソースコード
import java.util.Scanner; class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int t = sc.nextInt(); for (int i = 0; i < t; i++) { int n = sc.nextInt(); int count = 0; for (int j = 0; j < n; j++) { int f = sc.nextInt(); if (f == 1) { count++; } } System.out.println(count); } } }