結果
問題 | No.224 文字列変更(easy) |
ユーザー | りあん |
提出日時 | 2015-06-12 22:22:51 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 23 ms / 5,000 ms |
コード長 | 2,006 bytes |
コンパイル時間 | 769 ms |
コンパイル使用メモリ | 112,228 KB |
実行使用メモリ | 25,680 KB |
最終ジャッジ日時 | 2024-07-18 01:59:16 |
合計ジャッジ時間 | 1,919 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 19 ms
21,808 KB |
testcase_01 | AC | 19 ms
23,632 KB |
testcase_02 | AC | 19 ms
23,632 KB |
testcase_03 | AC | 19 ms
23,372 KB |
testcase_04 | AC | 19 ms
23,788 KB |
testcase_05 | AC | 21 ms
23,760 KB |
testcase_06 | AC | 19 ms
23,664 KB |
testcase_07 | AC | 20 ms
23,660 KB |
testcase_08 | AC | 21 ms
23,500 KB |
testcase_09 | AC | 22 ms
23,540 KB |
testcase_10 | AC | 22 ms
23,800 KB |
testcase_11 | AC | 22 ms
25,548 KB |
testcase_12 | AC | 20 ms
23,796 KB |
testcase_13 | AC | 19 ms
23,532 KB |
testcase_14 | AC | 19 ms
21,688 KB |
testcase_15 | AC | 23 ms
23,500 KB |
testcase_16 | AC | 23 ms
23,752 KB |
testcase_17 | AC | 21 ms
25,680 KB |
testcase_18 | AC | 21 ms
23,792 KB |
testcase_19 | AC | 21 ms
23,788 KB |
testcase_20 | AC | 21 ms
25,552 KB |
testcase_21 | AC | 20 ms
23,756 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.IO; using System.Text; using System.Numerics; namespace Solver { class Program { const int M = 1000000007; static void Main() { var sw = new System.IO.StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false }; var sc = new Scan(); int n = sc.Int; var s = sc.Str; var t = sc.Str; int ans = 0; for (int i = 0; i < n; i++) { if (s[i] != t[i]) ++ans; } sw.WriteLine(ans); sw.Flush(); } } class Scan { public int Int { get { return int.Parse(Console.ReadLine().Trim()); } } public long Long { get { return long.Parse(Console.ReadLine().Trim()); } } public string Str { get { return Console.ReadLine().Trim(); } } public int[] IntArr { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToArray(); } } public long[] LongArr { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToArray(); } } public double[] DoubleArr { get { return Console.ReadLine().Split().Select(double.Parse).ToArray(); } } public string[] StrArr { get { return Console.ReadLine().Trim().Split(); } } public List<int> IntList { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToList(); } } public List<long> LongList { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToList(); } } public void Multi(out int a, out int b) { var arr = IntArr; a = arr[0]; b = arr[1]; } public void Multi(out int a, out int b, out int c) { var arr = IntArr; a = arr[0]; b = arr[1]; c = arr[2]; } public void Multi(out long a, out long b) { var arr = LongArr; a = arr[0]; b = arr[1]; } public void Multi(out string a, out string b) { var arr = StrArr; a = arr[0]; b = arr[1]; } } }