結果
| 問題 | No.910 素数部分列 |
| コンテスト | |
| ユーザー |
ei1333333
|
| 提出日時 | 2019-10-18 11:01:06 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 30 ms / 1,000 ms |
| コード長 | 1,395 bytes |
| 記録 | |
| コンパイル時間 | 2,080 ms |
| コンパイル使用メモリ | 106,240 KB |
| 実行使用メモリ | 18,048 KB |
| 最終ジャッジ日時 | 2024-06-25 21:14:18 |
| 合計ジャッジ時間 | 4,947 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 50 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
class Program
{
Scanner cin;
int N;
string S;
void myon()
{
cin = new Scanner();
N = cin.nextInt();
S = cin.next();
int one = 0, nine = 0, other = 0;
for(int i = 0; i < N; i++)
{
if(S[i] == '3' || S[i] == '5' || S[i] == '7')
{
other += 1;
} else if(S[i] == '1')
{
one += 1;
} else
{
if(one > 0)
{
one -= 1;
other += 1;
} else
{
nine += 1;
}
}
}
int make = Math.Min(one, nine / 2);
Console.WriteLine(other + make + (one - make) / 2);
}
static void Main(string[] args)
{
new Program().myon();
}
}
class Scanner
{
string[] s;
int i;
readonly char[] cs = new char[] { ' ' };
public Scanner()
{
s = new string[0];
i = 0;
}
public string next()
{
if (i < s.Length) return s[i++];
string st = Console.ReadLine();
while (st == "") st = Console.ReadLine();
s = st.Split(cs, StringSplitOptions.RemoveEmptyEntries);
if (s.Length == 0) return next();
i = 0;
return s[i++];
}
public string nextLine()
{
return Console.ReadLine();
}
public int nextInt()
{
return int.Parse(next());
}
public long nextLong()
{
return long.Parse(next());
}
public double nextDouble()
{
return double.Parse(next());
}
}
ei1333333