結果
| 問題 | No.83 最大マッチング |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-11-26 11:20:16 |
| 言語 | C# (.NET 8.0.404) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 823 bytes |
| コンパイル時間 | 7,847 ms |
| コンパイル使用メモリ | 170,976 KB |
| 実行使用メモリ | 216,304 KB |
| 最終ジャッジ日時 | 2025-11-26 11:20:27 |
| 合計ジャッジ時間 | 10,128 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 WA * 5 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (109 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System;
public class Program
{
public static void Main()
{
int x = int.Parse(Console.ReadLine() ?? string.Empty);
//string[] pass = (Console.ReadLine() ?? string.Empty).Trim().Split(' ');
//string a = Console.ReadLine() ?? string.Empty;
string num = "";
if(x % 2 == 0)
{
int aa = x / 2;
for (int i = 1; i <= aa;i++)
{
num += "1";
x -= 2;
}
}
else
{
int aa = x / 3;
for (int i = 1; i <= aa; i++)
{
num += "7";
x -= 3;
}
if (x == 2 )
{
num += "1";
//x -= 2;
}
}
Console.WriteLine(num);
}
}