結果
| 問題 |
No.138 化石のバージョン
|
| コンテスト | |
| ユーザー |
fujita
|
| 提出日時 | 2023-05-11 14:45:52 |
| 言語 | C# (.NET 8.0.404) |
| 結果 |
AC
|
| 実行時間 | 58 ms / 5,000 ms |
| コード長 | 3,435 bytes |
| コンパイル時間 | 12,257 ms |
| コンパイル使用メモリ | 168,676 KB |
| 実行使用メモリ | 185,464 KB |
| 最終ジャッジ日時 | 2024-11-27 12:41:48 |
| 合計ジャッジ時間 | 15,115 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 33 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (114 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) /home/judge/data/code/Main.cs(16,25): warning CS0219: 変数 'tencount' は割り当てられていますが、その値は使用されていません [/home/judge/data/code/main.csproj] main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System.Collections.Generic;
using System;
using System.Drawing;
namespace yukicoder
{
class Program
{
static void Main(string[] args)
{
var s = Console.ReadLine();
var str = Console.ReadLine();
List<char> list = new List<char>(s.Length);
List<char> list2 = new List<char>(str.Length);
int x = 0 , tencount = 0;
for (int i = 0; i < s.Length; i++)
{
list.Add(s[i]);
}
for (int j = 0; j < str.Length; j++)
{
list2.Add(str[j]);
}
for(int m = 0; m < s.Length; m++)
{
if (list[x] == list2[x])
{
list.Remove(list[x]);
list2.Remove(list2[x]);
}
else if(!(list[x] == list2[x]))
{
break;
}
}
if (list.Count == 1 && list2.Count == 1 && int.Parse(list[0].ToString()) > int.Parse(list2[0].ToString()))
{
Console.WriteLine("YES");
}
else if(list.Count == 1 && list2.Count == 1 && int.Parse(list[0].ToString()) < int.Parse(list2[0].ToString()))
{
Console.WriteLine("NO");
}
else if (list.Count == 0 && list2.Count == 0)
{
Console.WriteLine("YES");
}
else if (list.Count == 0 && list2.Count > 0)
{
Console.WriteLine("NO");
}
else if (list.Count > 0 && list2.Count == 0)
{
Console.WriteLine("YES");
}
else if(list[0].Equals("."))
{
Console.WriteLine("YES");
}
else if (list2[0].Equals("."))
{
Console.WriteLine("NO");
}
else if (list.IndexOf('.') > 0 && list2.IndexOf('.') == 0)
{
if (list.IndexOf('.') > list2.IndexOf('.'))
{
Console.WriteLine("YES");
}
}
else if (list.IndexOf('.') == 0 && list2.IndexOf('.') > 0)
{
if (list.IndexOf('.') < list2.IndexOf('.'))
{
Console.WriteLine("NO");
}
}
else if (!list[0].Equals(".") && !list2[0].Equals("."))
{
if (int.Parse(list[0].ToString()) < int.Parse(list2[0].ToString()))
{
if (list.IndexOf('.') > list2.IndexOf('.'))
{
Console.WriteLine("YES");
}
else
{
Console.WriteLine("NO");
}
}
else if (int.Parse(list[0].ToString()) > int.Parse(list2[0].ToString()))
{
if (list.IndexOf('.') < list2.IndexOf('.'))
{
Console.WriteLine("NO");
}
else
{
Console.WriteLine("YES");
}
}
}
}
}
}
fujita