結果
問題 |
No.83 最大マッチング
|
ユーザー |
![]() |
提出日時 | 2017-12-13 10:56:30 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 568 bytes |
コンパイル時間 | 791 ms |
コンパイル使用メモリ | 108,216 KB |
実行使用メモリ | 28,096 KB |
最終ジャッジ日時 | 2024-12-14 09:03:38 |
合計ジャッジ時間 | 1,734 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 WA * 4 |
コンパイルメッセージ
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(); } } }