結果
問題 | No.1470 Mex Sum |
ユーザー |
![]() |
提出日時 | 2021-04-13 12:53:34 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 193 ms / 2,000 ms |
コード長 | 1,302 bytes |
コンパイル時間 | 3,239 ms |
コンパイル使用メモリ | 76,808 KB |
実行使用メモリ | 45,100 KB |
最終ジャッジ日時 | 2024-06-29 13:36:25 |
合計ジャッジ時間 | 11,904 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 49 |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); long one = 0; long two = 0; long other = 0; for (int i = 0; i < n; i++) { int a = sc.nextInt(); if (a == 1) { one++; } else if (a == 2) { two++; } else { other++; } } long ans = 0; ans += one * (one - 1) / 2 * 2; ans += one * two * 3; ans += one * other * 2; ans += (two + other - 1) * (two + other) / 2; System.out.println(ans); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }