結果
問題 | No.83 最大マッチング |
ユーザー | kimny |
提出日時 | 2017-12-13 10:56:30 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 568 bytes |
コンパイル時間 | 830 ms |
コンパイル使用メモリ | 103,296 KB |
実行使用メモリ | 18,304 KB |
最終ジャッジ日時 | 2024-05-08 07:04:56 |
合計ジャッジ時間 | 1,797 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
18,048 KB |
testcase_01 | AC | 22 ms
18,048 KB |
testcase_02 | AC | 23 ms
18,176 KB |
testcase_03 | AC | 23 ms
18,176 KB |
testcase_04 | AC | 23 ms
18,176 KB |
testcase_05 | AC | 23 ms
18,048 KB |
testcase_06 | AC | 23 ms
18,176 KB |
testcase_07 | AC | 23 ms
18,176 KB |
testcase_08 | AC | 22 ms
18,176 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
コンパイルメッセージ
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.Text; using System.Threading.Tasks; namespace yukicoder_83 { class Program { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); int ans = 0; int keta = n / 2; for (int i = 0; i < keta; i++) { ans += (int)Math.Pow(10, i); } if (n % 2 == 1) ans += 6 * (int)Math.Pow(10, keta - 1); Console.WriteLine(ans); Console.ReadLine(); } } }