提出 #1306938
ソースコード 拡げる
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AtCoder_Cs
{
class Program
{
static void Main(string[] args)
{
int[] line = Console.ReadLine().Trim().Split(' ').Select(int.Parse).ToArray();
string ans = "no";
if(line[2] >= line[0] && line[2] <= line[1])
{
ans = "yes";
}
Console.WriteLine($"{ans}");
Console.ReadLine();
}
}
}
提出情報
| 提出日時 | |
|---|---|
| 問題 | A - Between Two Integers |
| ユーザ | stady0sh |
| 言語 | C# (Mono 4.6.2.0) |
| 得点 | 0 |
| コード長 | 570 Byte |
| 結果 | WA |
| 実行時間 | 23 ms |
| メモリ | 13396 KiB |
ジャッジ結果
| セット名 | Sample | All | ||||
|---|---|---|---|---|---|---|
| 得点 / 配点 | 0 / 0 | 0 / 100 | ||||
| 結果 |
|
|
| セット名 | テストケース |
|---|---|
| Sample | sample_01.txt, sample_02.txt, sample_03.txt |
| All | sample_01.txt, sample_02.txt, sample_03.txt, subtask_1_1.txt, subtask_1_2.txt, subtask_1_3.txt, subtask_1_4.txt, subtask_1_5.txt, subtask_1_6.txt, subtask_1_7.txt |
| ケース名 | 結果 | 実行時間 | メモリ |
|---|---|---|---|
| sample_01.txt | WA | 22 ms | 11348 KiB |
| sample_02.txt | WA | 22 ms | 11348 KiB |
| sample_03.txt | WA | 23 ms | 13396 KiB |
| subtask_1_1.txt | WA | 22 ms | 9300 KiB |
| subtask_1_2.txt | WA | 23 ms | 13396 KiB |
| subtask_1_3.txt | WA | 22 ms | 9300 KiB |
| subtask_1_4.txt | WA | 22 ms | 11348 KiB |
| subtask_1_5.txt | WA | 23 ms | 13396 KiB |
| subtask_1_6.txt | WA | 22 ms | 11348 KiB |
| subtask_1_7.txt | WA | 23 ms | 11348 KiB |