結果
問題 | No.83 最大マッチング |
ユーザー | kmtrc130 |
提出日時 | 2017-04-28 16:10:09 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 464 bytes |
コンパイル時間 | 958 ms |
コンパイル使用メモリ | 109,632 KB |
実行使用メモリ | 27,840 KB |
最終ジャッジ日時 | 2024-09-13 17:48:36 |
合計ジャッジ時間 | 2,030 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
23,880 KB |
testcase_01 | AC | 24 ms
25,936 KB |
testcase_02 | AC | 23 ms
23,856 KB |
testcase_03 | AC | 23 ms
23,728 KB |
testcase_04 | WA | - |
testcase_05 | AC | 24 ms
25,668 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
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.Linq; class Program { static void Main(string[] args) { int N = int.Parse(Console.ReadLine()); int threeMs = 0; threeMs = N / 3; N %= 3; if (0 < N % 2) { threeMs -= 1; N += 3; } for (int i = 0; i < threeMs; i++) { Console.Write("7"); } for (int i = 0; i < N / 2; i++) { Console.Write("1"); } Console.WriteLine(); } }