buggy_code
stringlengths
11
625k
fixed_code
stringlengths
17
625k
bug_type
stringlengths
2
4.45k
language
int64
0
8
token_count
int64
5
200k
change_count
int64
0
100
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Competitive { internal class Solution { public int N, Q; public void Run() { { var line = Input.ReadIntArray(); N = line[0]; Q = line[1]; } var S = new SegTree(N); for (int i = 0; i <...
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Competitive { internal class Solution { public int N, Q; public void Run() { { var line = Input.ReadIntArray(); N = line[0]; Q = line[1]; } var S = new SegTree(N); for (int i = 0; i <...
[["-", 0, 198, 0, 200, 0, 212, 0, 211, 0, 146], ["+", 0, 198, 0, 200, 0, 212, 0, 211, 0, 147]]
8
1,179
2
using System; class main { static void Main(string[] args) { int seconds = 0, minutes = 0, hours = 0; int input = int.Parse(Console.ReadLine()); if (input < 60) { seconds = input; } else if (input < 3600) { seconds = input % 60; minutes = (input - seconds) % 3600; } else { ...
using System; class main { static void Main(string[] args) { int seconds = 0, minutes = 0, hours = 0; int input = int.Parse(Console.ReadLine()); if (input < 60) { seconds = input; } else if (input < 3600) { seconds = input % 60; minutes = ((input % 3600) - seconds) / 60; } else {...
[["+", 12, 16, 31, 23, 0, 16, 31, 23, 0, 24], ["+", 31, 23, 0, 16, 31, 23, 0, 16, 17, 109], ["+", 31, 23, 0, 16, 31, 23, 0, 16, 12, 203], ["+", 12, 16, 31, 23, 0, 16, 31, 23, 0, 25], ["-", 64, 196, 0, 1, 0, 11, 12, 16, 17, 109], ["-", 64, 196, 0, 1, 0, 11, 12, 16, 12, 203], ["+", 64, 196, 0, 1, 0, 11, 12, 16, 17, 85], ...
8
150
8
using System; using System.Linq; namespace AOJ { class Program { public static void Main(string[] args) { var a = int.Parse(Console.ReadLine()); Console.WriteLine("{0}:{1}:{2}", a / 3600, a / 60 % 60, a % 3600); } } }
using System; using System.Linq; namespace AOJ { class Program { public static void Main(string[] args) { var a = int.Parse(Console.ReadLine()); Console.WriteLine("{0}:{1}:{2}", a / 3600, a / 60 % 60, a % 60); } } }
[["-", 0, 213, 3, 4, 0, 28, 0, 16, 12, 203], ["+", 0, 213, 3, 4, 0, 28, 0, 16, 12, 203]]
8
65
2
using System; class AOJ { public static void Main() { var input = int.Parse(Console.ReadLine().Trim()); int h = input / 3600; input = input % 3600; int m = input / 60; int s = input % 60; Console.WriteLine(string.Format("{0}:{1}:{2}"), h, m, s); } }
using System; class AOJ { public static void Main() { int input = int.Parse(Console.ReadLine().Trim()); int h = input / 3600; input = input % 3600; int m = input / 60; int s = input % 60; Console.WriteLine(string.Format("{0}:{1}:{2}", h, m, s)); } }
[["-", 8, 196, 0, 197, 0, 198, 39, 216, 0, 217], ["+", 0, 195, 8, 196, 0, 197, 0, 198, 39, 199], ["-", 3, 4, 0, 28, 0, 213, 3, 4, 0, 25], ["+", 3, 4, 0, 28, 0, 213, 3, 4, 0, 25]]
8
80
4
using System; class Untitled { static void Main(string[] args) { bool parsed = false; int seconds = 0; string s = Console.ReadLine(); if (!String.IsNullOrEmpty(s)) { parsed = Int32.TryParse(s, out seconds); } if (parsed && 0 <= seconds && seconds < 86400) { TimeSpan time = TimeSpa...
using System; class Untitled { static void Main(string[] args) { bool parsed = false; int seconds = 0; string s = Console.ReadLine(); if (!String.IsNullOrEmpty(s)) { parsed = Int32.TryParse(s, out seconds); } if (parsed && 0 <= seconds && seconds < 86400) { TimeSpan time = TimeSpa...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
118
2
using System; namespace Hi { class Program { static void Main() { int x = int.Parse(Console.ReadLine()); int h = 0, m = 0, s = 0; while (x >= 3600) { x -= 3600; h++; } while (x >= 60) { x -= 60; m++; } Console.WriteLine("{0}:{1}:{2}", h, m, s); } } }
using System; namespace Hi { class Program { static void Main() { int x = int.Parse(Console.ReadLine()); int h = 0, m = 0, s = 0; while (x >= 3600) { x -= 3600; h++; } while (x >= 60) { x -= 60; m++; } s = x; Console.WriteLine("{0}:{1}:{2}", h, m, s); } }...
[["+", 0, 195, 8, 196, 0, 1, 0, 11, 31, 22], ["+", 8, 196, 0, 1, 0, 11, 0, 202, 0, 32], ["+", 0, 195, 8, 196, 0, 1, 0, 11, 12, 22], ["+", 8, 201, 0, 195, 8, 196, 0, 1, 0, 35]]
8
90
4
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int a = int.Parse(Console.ReadLine()); int b = a / 3600; int c = a % 3600; Console.WriteLine("{0} {1} {2}", b, c / 60, c % 60); } }...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApp5 { class Program { static void Main(string[] args) { // var ab = Console.ReadLine().Split().Select(int.Parse).ToArray(); // int a = ab[0]; // int b = ab[1]; // Console.WriteLine("{0} {1}", a ...
[["-", 36, 36, 36, 36, 0, 208, 0, 209, 141, 22], ["+", 36, 36, 36, 36, 0, 208, 0, 209, 141, 22], ["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
86
4
using System; namespace p3 { class prg { static void Main() { ushort h = ushort.Parse(Console.ReadLine()); ushort m, s; s = (ushort)(h % 60); h -= s; h /= 60; m = (ushort)(h % 60); h -= m; h /= 60; Console.WriteLine(h + ":" + m + ":" + s); } } }
using System; namespace p3 { class prg { static void Main() { uint h = uint.Parse(Console.ReadLine()); uint m, s; s = (uint)(h % 60); h -= s; h /= 60; m = (uint)(h % 60); h -= m; h /= 60; Console.WriteLine(h + ":" + m + ":" + s); } } }
[["-", 0, 195, 8, 196, 0, 197, 0, 198, 39, 199], ["+", 0, 195, 8, 196, 0, 197, 0, 198, 39, 199], ["-", 0, 200, 0, 212, 0, 213, 63, 214, 205, 199], ["+", 0, 200, 0, 212, 0, 213, 63, 214, 205, 199], ["-", 8, 196, 0, 1, 0, 11, 12, 74, 39, 199], ["+", 8, 196, 0, 1, 0, 11, 12, 74, 39, 199]]
8
94
10
using System; class Wacth { static void Main() { int time = int.Parse(Console.ReadLine()); int h = time / 3600; int h2 = time % 3600; int m = h2 / 60; int m2 = h2 % 60; int s = m2; Console.WriteLine(h + " : " + m + " : " + s); } }
using System; class Wacth { static void Main() { int time = int.Parse(Console.ReadLine()); int h = time / 3600; int h2 = time % 3600; int m = h2 / 60; int m2 = h2 % 60; int s = m2; Console.WriteLine(h + ":" + m + ":" + s); } }
[["-", 31, 16, 31, 16, 31, 16, 12, 5, 0, 222], ["+", 31, 16, 31, 16, 31, 16, 12, 5, 0, 222], ["-", 0, 28, 0, 16, 31, 16, 12, 5, 0, 222], ["+", 0, 28, 0, 16, 31, 16, 12, 5, 0, 222]]
8
80
4
using System; class Program { static void Main(string[] args) { int s = int.Parse(Console.ReadLine()); int h = s / 3600; s %= 3600; int m = s / 60; s %= 60; Console.WriteLine("{0} : {1} : {2}", h, m, s); } }
using System; class Program { static void Main(string[] args) { int s = int.Parse(Console.ReadLine()); int h = s / 3600; s %= 3600; int m = s / 60; s %= 60; Console.WriteLine("{0}:{1}:{2}", h, m, s); } }
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
69
2
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication32 { class Program { static void Main() { int a = int.Parse(Console.ReadLine()); int b = a / 3600; int c = (a % 3600) / 60; int d = a - b * 3600 - b * 60; Console.WriteLine("{0}:{1}:{...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication32 { class Program { static void Main() { int a = int.Parse(Console.ReadLine()); int b = a / 3600; int c = (a % 3600) / 60; int d = a - b * 3600 - c * 60; Console.WriteLine("{0}:{1}:{...
[["-", 0, 200, 0, 212, 0, 16, 12, 16, 31, 22], ["+", 0, 200, 0, 212, 0, 16, 12, 16, 31, 22]]
8
95
2
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Watch { class Program { static void Main(string[] args) { int S = int.Parse(Console.ReadLine()); int h = S / 1440; int m = S / 60; int s = S % 60; Console.WriteLine(h + ":" + m + ":" + s); } } }
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Watch { class Program { static void Main(string[] args) { int S = int.Parse(Console.ReadLine()); int h = S / 3600; int m = S / 60 - h * 60; int s = S % 60; Console.WriteLine(h + ":" + m + ":" + s); ...
[["-", 0, 198, 0, 200, 0, 212, 0, 16, 12, 203], ["+", 0, 198, 0, 200, 0, 212, 0, 16, 12, 203], ["+", 0, 200, 0, 212, 0, 16, 31, 16, 12, 203], ["+", 0, 198, 0, 200, 0, 212, 0, 16, 17, 33], ["+", 0, 200, 0, 212, 0, 16, 12, 16, 31, 22], ["+", 0, 200, 0, 212, 0, 16, 12, 16, 17, 48]]
8
93
6
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int S; int h; int m; int s; S = int.Parse(System.Console.ReadLine()); if (0 <= S || S <= 86400) { h = S / 3600; if (S % 3600 ==...
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int S; int h; int m; int s; S = int.Parse(System.Console.ReadLine()); if (0 <= S || S <= 86400) { h = S / 3600; if (S % 3600 ==...
[["-", 75, 196, 0, 1, 0, 11, 12, 16, 31, 22], ["+", 0, 1, 0, 11, 12, 16, 31, 23, 0, 24], ["+", 0, 11, 12, 16, 31, 23, 0, 16, 31, 22], ["+", 0, 11, 12, 16, 31, 23, 0, 16, 17, 109], ["+", 0, 11, 12, 16, 31, 23, 0, 16, 12, 203], ["+", 0, 1, 0, 11, 12, 16, 31, 23, 0, 25]]
8
133
6
using System; namespace ConsoleApp1 { class Program { static void Main() { var S = int.Parse(Console.ReadLine()); int h, m, s; h = S / 3600; m = (S % 3600) / 60; s = (S % 60); Console.WriteLine("h = (0), m = {1},s = {2}", h, m, s); } } }
using System; namespace ConsoleApp1 { class Program { static void Main() { var S = int.Parse(Console.ReadLine()); int h, m, s; h = S / 3600; m = (S % 3600) / 60; s = (S % 60); Console.WriteLine("{0}:{1}:{2}", h, m, s); } } }
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
78
2
using System; class Program { static void Main(string[] args) { string str = Console.ReadLine(); int second = int.Parse(str); int h, m, s; h = second / 3600; second %= 3600; m = second % 60; second %= 60; s = second; Console.WriteLine(h + ":" + m + ":" + s); } }
using System; class Program { static void Main(string[] args) { string str = Console.ReadLine(); int second = int.Parse(str); int h, m, s; h = second / 3600; second %= 3600; m = second / 60; second %= 60; s = second; Console.WriteLine(h + ":" + m + ":" + s); } }
[["-", 8, 196, 0, 1, 0, 11, 12, 16, 17, 109], ["+", 8, 196, 0, 1, 0, 11, 12, 16, 17, 85]]
8
87
2
using System; namespace ConsoleApp7 { class Program { public const int HOUR = 3600; public const int MIN = 60; static void Main(string[] args) { int NUM = int.Parse(Console.ReadLine()); int H = NUM / 3600; int ret = NUM % 3600; int M = ret / 60; int S = ret % 60; Console.WriteLine("{0};{...
using System; namespace ConsoleApp7 { class Program { public const int HOUR = 3600; public const int MIN = 60; static void Main(string[] args) { int NUM = int.Parse(Console.ReadLine()); int H = NUM / 3600; int ret = NUM % 3600; int M = ret / 60; int S = ret % 60; Console.WriteLine("{0}:{...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
93
2
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AOJ1_1_E { class Program { static void Main(string[] args) { string[] number = Console.ReadLine().Split(' '); int a = int.Parse(number[0]); int b = int.Parse(number[1]); if (...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AOJ1_1_E { class Program { static void Main(string[] args) { string[] number = Console.ReadLine().Split(' '); int a = int.Parse(number[0]); int b = int.Parse(number[1]); if (...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
137
2
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AOJHelloWorld1 { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); int a = int.Parse(str[0]); int b = int.Parse(str[1]); if (a <=...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AOJHelloWorld1 { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); int a = int.Parse(str[0]); int b = int.Parse(str[1]); if (a < ...
[["-", 0, 195, 8, 196, 0, 57, 15, 16, 17, 19], ["+", 0, 195, 8, 196, 0, 57, 15, 16, 17, 18], ["-", 8, 196, 0, 57, 75, 57, 15, 16, 17, 60], ["+", 8, 196, 0, 57, 75, 57, 15, 16, 17, 47], ["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
137
8
using System; class program { public static int Main() { var In = Console.ReadLine(); var a = int.Parse(In.Split(' ')[0]); var b = int.Parse(In.Split(' ')[1]); string sign = "=="; if (a > b) { sign = ">"; } else if (a < b) { sign = "<"; } Console.WriteLine("a {1} b", sig...
using System; class program { public static int Main() { var In = Console.ReadLine(); var a = int.Parse(In.Split(' ')[0]); var b = int.Parse(In.Split(' ')[1]); string sign = "=="; if (a > b) { sign = ">"; } else if (a < b) { sign = "<"; } Console.WriteLine("a {0} b", sig...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
114
2
using System; using System.Text.RegularExpressions; using System.Text; using System.Linq; namespace aizu { public class EntryPoint { public static int[] Split(string line) { return Regex.Split(line, " ").Select(x => int.Parse(x)).ToArray(); } public static void Main() { var line = Console.ReadLine(); ...
using System; using System.Text.RegularExpressions; using System.Text; using System.Linq; namespace aizu { public class EntryPoint { public static int[] Split(string line) { return Regex.Split(line, " ").Select(x => int.Parse(x)).ToArray(); } public static void Main() { var line = Console.ReadLine(); ...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
153
2
using System; class Program { private static int Main() { var input = Console.ReadLine(); var values = input.Split(' '); int a = int.Parse(values[0]); int b = int.Parse(values[1]); string mark; if (a < b) { mark = "<"; } else if (a > b) { mark = ">"; } else { mark ...
using System; class Program { private static int Main() { var input = Console.ReadLine(); var values = input.Split(' '); int a = int.Parse(values[0]); int b = int.Parse(values[1]); string mark; if (a < b) { mark = "<"; } else if (a > b) { mark = ">"; } else { mark ...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["-", 0, 200, 0, 212, 0, 213, 3, 4, 0, 21], ["-", 0, 212, 0, 213, 3, 4, 0, 28, 0, 22]]
8
131
6
using System; namespace tes { class Program { public static void Main() { String str = Console.ReadLine(); String[] num = str.Split(' '); if (int.Parse(num[0]) < int.Parse(num[1])) { Console.WriteLine("a <b"); } else if (int.Parse(num[0]) > int.Parse(num[1])) { Console.WriteLine("a> b"); ...
using System; namespace tes { class Program { public static void Main() { String str = Console.ReadLine(); String[] num = str.Split(' '); if (int.Parse(num[0]) < int.Parse(num[1])) { Console.WriteLine("a < b"); } else if (int.Parse(num[0]) > int.Parse(num[1])) { Console.WriteLine("a > b")...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
121
4
using System; using System.Collections.Generic; using System.Linq; using System.Text; class Program { void Calc() { var sc = new Scanner(); int a = sc.NextInt(); int b = sc.NextInt(); if (a == b) { Console.WriteLine("a == b"); } else if (a > b) { Console.WriteLine("a > b"); } else...
using System; using System.Collections.Generic; using System.Linq; using System.Text; class Program { void Calc() { var sc = new Scanner(); int a = sc.NextInt(); int b = sc.NextInt(); if (a == b) { Console.WriteLine("a == b"); } else if (a > b) { Console.WriteLine("a > b"); } else...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
261
2
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int a = int.Parse(s[0]); int b = int.Parse(s[1]); if (a < b) { Console.WriteLine("a < b"); } else if (a > b) { Console.WriteLine("a > b"); }...
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int a = int.Parse(s[0]); int b = int.Parse(s[1]); if (a < b) { Console.WriteLine("a < b"); } else if (a > b) { Console.WriteLine("a > b"); }...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
113
2
using System; namespace ConsoleApplication11 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int a = int.Parse(s[0]); int b = int.Parse(s[1]); if (a < b) { Console.WriteLine("a<b"); } if (a > b) { Console.WriteLine("a>b"); } ...
using System; namespace ConsoleApplication11 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int a = int.Parse(s[0]); int b = int.Parse(s[1]); if (a < b) { Console.WriteLine("a < b"); } if (a > b) { Console.WriteLine("a > b"); }...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
117
6
using System; class main { public static int Main() { string x = Console.ReadLine(); string[] str = x.Split(' '); int a = int.Parse(str[0]); int b = int.Parse(str[1]); if (a < b) { Console.WriteLine("a < b"); } if (a > b) { Console.WriteLine("a > b"); } else { ...
using System; class main { public static int Main() { string x = Console.ReadLine(); string[] str = x.Split(' '); int a = int.Parse(str[0]); int b = int.Parse(str[1]); if (a < b) { Console.WriteLine("a < b"); } if (a > b) { Console.WriteLine("a > b"); } if (a == b) ...
[["-", 8, 201, 0, 195, 8, 196, 0, 57, 0, 95], ["+", 8, 201, 0, 195, 8, 196, 0, 57, 0, 121], ["+", 8, 201, 0, 195, 8, 196, 0, 57, 0, 24], ["+", 0, 195, 8, 196, 0, 57, 15, 16, 31, 22], ["+", 0, 195, 8, 196, 0, 57, 15, 16, 17, 60], ["+", 0, 195, 8, 196, 0, 57, 15, 16, 12, 22], ["+", 8, 201, 0, 195, 8, 196, 0, 57, 0, 25]]
8
113
7
using System; using System.Collections.Generic; class Program { public void Proc() { string[] inpt = Console.ReadLine().Split(' '); int a = int.Parse(inpt[0]); int b = int.Parse(inpt[1]); string kigo = ""; if (a == b) { kigo = "="; } else if (a > b) { kigo = ">"; } else { ...
using System; using System.Collections.Generic; class Program { public void Proc() { string[] inpt = Console.ReadLine().Split(' '); int a = int.Parse(inpt[0]); int b = int.Parse(inpt[1]); string kigo = ""; if (a == b) { kigo = "=="; } else if (a > b) { kigo = ">"; } else { ...
[["-", 64, 196, 0, 1, 0, 11, 12, 5, 0, 222], ["+", 64, 196, 0, 1, 0, 11, 12, 5, 0, 222]]
8
149
2
using System; class main { public static void Main() { string[] str = Console.ReadLine().Split(); int a = int.Parse(str[0]), b = int.Parse(str[1]); if ((a < b)) { Console.WriteLine("a<b"); } else if (a > b) { Console.WriteLine("a>b"); } else Console.WriteLine("a==b"); } }
using System; class main { public static void Main() { string[] str = Console.ReadLine().Split(); int a = int.Parse(str[0]), b = int.Parse(str[1]); if ((a < b)) { Console.WriteLine("a < b"); } else if (a > b) { Console.WriteLine("a > b"); } else Console.WriteLine("a == b"); } }
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
102
6
using System; using System.Linq; namespace SorLorE { class Program { static void Main(string[] args) { int[] data = Console.ReadLine().Split(' ').Select(x => Convert.ToInt32(x)).ToArray(); Conpare.Judje(data[0], data[1]); } } class Conpare { static public void Judje(int a, int b) { string rel...
using System; using System.Linq; namespace SorLorE { class Program { static void Main(string[] args) { int[] data = Console.ReadLine().Split(' ').Select(x => Convert.ToInt32(x)).ToArray(); Conpare.Judje(data[0], data[1]); } } class Conpare { static public void Judje(int a, int b) { string rel...
[["-", 0, 16, 31, 16, 31, 16, 31, 16, 31, 22], ["-", 0, 16, 31, 16, 31, 16, 31, 16, 17, 72], ["-", 31, 16, 31, 16, 31, 16, 12, 5, 0, 222], ["+", 0, 28, 0, 16, 31, 16, 31, 5, 0, 222], ["-", 0, 28, 0, 16, 31, 16, 12, 5, 0, 222], ["+", 3, 4, 0, 28, 0, 16, 12, 5, 0, 222], ["-", 0, 213, 3, 4, 0, 28, 0, 16, 17, 72], ["-", 0,...
8
147
8
using System; class Program { static void Main() { string[] s = Console.ReadLine().Split(' '); int a = int.Parse(s[0]); int b = int.Parse(s[1]); if (a == b) Console.WriteLine("a == b"); else if (a > b) Console.WriteLine("a>b"); else if (a < b) Console.WriteLine("a<b"); } }
using System; class Program { static void Main() { string[] s = Console.ReadLine().Split(' '); int a = int.Parse(s[0]); int b = int.Parse(s[1]); if (a == b) Console.WriteLine("a == b"); else if (a > b) Console.WriteLine("a > b"); else if (a < b) Console.WriteLine("a < b"); ...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
105
4
using System; using System.Collections.Generic; namespace Lesson04 { class MainClass { public static List<string[]> getinputdata() { List<string[]> list_temp = new List<string[]>(); string strdata = Console.ReadLine(); while (strdata != null) { string[] s_temp = strdata.Split(' '); list_t...
using System; using System.Collections.Generic; namespace Lesson04 { class MainClass { public static List<string[]> getinputdata() { List<string[]> list_temp = new List<string[]>(); string strdata = Console.ReadLine(); while (strdata != null) { string[] s_temp = strdata.Split(' '); list_t...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
219
6
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { var ab = Console.ReadLine().Split().Select(x => int.Parse(x)).ToArray(); var a = ab[0]; var b = ab[1]; if (a < b) { Console.Writ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { var ab = Console.ReadLine().Split().Select(x => int.Parse(x)).ToArray(); var a = ab[0]; var b = ab[1]; if (a < b) { Console.Writ...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
133
2
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApp5 { class Program { static void Main(string[] args) { var ab = Console.ReadLine().Split().Select(int.Parse).ToArray(); int a = ab[0]; int b = ab[1]; if (a == b) { Console.WriteLine("a==b")...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApp5 { class Program { static void Main(string[] args) { var ab = Console.ReadLine().Split().Select(int.Parse).ToArray(); int a = ab[0]; int b = ab[1]; if (a == b) { Console.WriteLine("a == b...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
126
6
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); int a, b; a = int.Parse(str[0]); b = int.Parse(str[1]); if (a < b) { Console.WriteLine("a < b"); } else if (a > b) { Console.WriteLine("...
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); int a, b; a = int.Parse(str[0]); b = int.Parse(str[1]); if (a < b) { Console.WriteLine("a < b"); } else if (a > b) { Console.WriteLine("...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
116
2
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { String x = Console.ReadLine(); //???????????????????????£??\ String[] array = x.Split(' '); //??°???????????´????????£??\ int a = int.Parse(array[0]); int b = int.Parse(array[1]); ...
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { String x = Console.ReadLine(); //???????????????????????£??\ String[] array = x.Split(' '); //??°???????????´????????£??\ int a = int.Parse(array[0]); int b = int.Parse(array[1]); ...
[["+", 8, 201, 0, 195, 8, 196, 0, 57, 0, 95]]
8
120
1
using System; class ITP1_2 { public static void Main() { string[] Input = Console.ReadLine().Split(' '); int a = int.Parse(Input[0]); int b = int.Parse(Input[1]); Console.Write("a "); if (a > b) Console.Write(">"); if (a == b) Console.Write("="); if (a < b) Console.Wr...
using System; class ITP1_2 { public static void Main() { string[] Input = Console.ReadLine().Split(' '); int a = int.Parse(Input[0]); int b = int.Parse(Input[1]); Console.Write("a "); if (a > b) Console.Write(">"); if (a == b) Console.Write("=="); if (a < b) Console.W...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
122
2
using System; using System.Linq; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { int[] x = Console.ReadLine().Split().Select(int.Parse).ToArray(); if (x[1] > x[0]) { Console.WriteLine("a > b"); } else if (x[0] > x[1]) { Console.WriteLine("a > b"); } else ...
using System; using System.Linq; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { int[] x = Console.ReadLine().Split().Select(int.Parse).ToArray(); if (x[1] > x[0]) { Console.WriteLine("a < b"); } else if (x[0] > x[1]) { Console.WriteLine("a > b"); } else ...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
112
2
using System; class aizu { public static int Main() { int[] n = new int[100]; string[] str = new string[100]; str = Console.ReadLine().Split(' '); n[0] = int.Parse(str[0]); n[1] = int.Parse(str[1]); if (n[0] - n[1] > 0) Console.WriteLine("a > b"); else if (n[0] - n[1] < 0) Cons...
using System; class aizu { public static int Main() { int[] n = new int[100]; string[] str = new string[100]; str = Console.ReadLine().Split(' '); n[0] = int.Parse(str[0]); n[1] = int.Parse(str[1]); if (n[0] - n[1] > 0) Console.WriteLine("a > b"); else if (n[0] - n[1] < 0) Cons...
[["-", 0, 57, 75, 57, 75, 57, 15, 16, 17, 18], ["+", 0, 57, 75, 57, 75, 57, 15, 16, 17, 60]]
8
156
2
using System; class EntryPoint { static void Main() { string[] s = Console.ReadLine().Split(' '); int a = int.Parse(s[0]); int b = int.Parse(s[1]); Calc c = new Calc(); c.Compare(a, b); } } class Calc { public void Compare(int a, int b) { if (a < b) Console.WriteLine("a < b"); ...
using System; class EntryPoint { static void Main() { string[] s = Console.ReadLine().Split(' '); int a = int.Parse(s[0]); int b = int.Parse(s[1]); Calc c = new Calc(); c.Compare(a, b); } } class Calc { public void Compare(int a, int b) { if (a < b) Console.WriteLine("a < b"); ...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
132
2
public class Small_Large_or_Equal { static void Main(string[] args) { var line = System.Console.ReadLine().Trim().Split(' '); int a = int.Parse(line[0]); int b = int.Parse(line[1]); string str = "a"; if (a < b) { str += "<b"; } else if (a == b) { str += "==b"; } else { s...
public class Small_Large_or_Equal { static void Main(string[] args) { var line = System.Console.ReadLine().Trim().Split(' '); int a = int.Parse(line[0]); int b = int.Parse(line[1]); string str = "a "; if (a < b) { str += "< b"; } else if (a == b) { str += "== b"; } else { ...
[["-", 0, 198, 0, 200, 0, 212, 0, 5, 0, 222], ["+", 0, 198, 0, 200, 0, 212, 0, 5, 0, 222], ["-", 64, 196, 0, 1, 0, 11, 12, 5, 0, 222], ["+", 64, 196, 0, 1, 0, 11, 12, 5, 0, 222], ["-", 75, 196, 0, 1, 0, 11, 12, 5, 0, 222], ["+", 75, 196, 0, 1, 0, 11, 12, 5, 0, 222]]
8
118
8
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace StartFinish { class Program { static void Main(string[] args) { int[] ab = Console.ReadLine().Split(' ').Select(int.Parse).ToArray(); if (ab[0] == ab[1]) { Console.WriteLine("a==b"); ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace StartFinish { class Program { static void Main(string[] args) { int[] ab = Console.ReadLine().Split(' ').Select(int.Parse).ToArray(); if (ab[0] == ab[1]) { Console.WriteLine("a == b"); ...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
132
6
using System; class AOJ { public static void Main() { String[] st = Console.ReadLine().Split(' '); int a = int.Parse(st[0]); int b = int.Parse(st[1]); if (a == b) Console.WriteLine("a = b"); else if (a < b) Console.WriteLine("a < b"); else Console.WriteLine("a > b"); } }
using System; class AOJ { public static void Main() { String[] st = Console.ReadLine().Split(' '); int a = int.Parse(st[0]); int b = int.Parse(st[1]); if (a == b) Console.WriteLine("a == b"); else if (a < b) Console.WriteLine("a < b"); else Console.WriteLine("a > b"); } }
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
100
2
using System; using System.Collections.Generic; // using System.Linq; // using System.Text; // using System.Threading.Tasks; // namespace _2_A //{ class Program { static void Main(string[] args) { //???????????? string a = Console.ReadLine(); string[] b = a.Split(' '); int x = int.Parse(b[0]); in...
using System; using System.Collections.Generic; // using System.Linq; // using System.Text; // using System.Threading.Tasks; // namespace _2_A //{ class Program { static void Main(string[] args) { //???????????? string a = Console.ReadLine(); string[] b = a.Split(' '); int x = int.Parse(b[0]); in...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
129
2
using System; using System.Linq; class aizu_judge { static void Main() { int[] num = System.Console.ReadLine().Split().Select(int.Parse).ToArray(); int result = num[0] - num[1]; if (result > 0) Console.WriteLine("a > b"); else if (result < 0) Console.WriteLine("a < b"); else Co...
using System; using System.Linq; class aizu_judge { static void Main() { int[] num = System.Console.ReadLine().Split().Select(int.Parse).ToArray(); int result = num[0] - num[1]; if (result > 0) Console.WriteLine("a > b"); else if (result < 0) Console.WriteLine("a < b"); else Co...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
101
2
using System; public class Program { public static void Main(string[] args) { var ss = new StreamScanner(); //--------------------------------- var x = ss.Next<int>(); var y = ss.Next<int>(); if (x > y) { Console.WriteLine("a>b"); } else if (x < y) { Console.WriteLine("a<b"); ...
using System; public class Program { public static void Main(string[] args) { var ss = new StreamScanner(); //--------------------------------- var x = ss.Next<int>(); var y = ss.Next<int>(); if (x > y) { Console.WriteLine("a > b"); } else if (x < y) { Console.WriteLine("a < b"); ...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
412
6
using System; using System.Collections.Generic; /*using System.Linq; using System.Text; using System.Threading.Tasks;*/ class Program { static void Main(string[] args) { String s = Console.ReadLine(); String[] sarray = s.Split(' '); //?????????????????????????´? int a = int.Parse(sarray[0]); int b = ...
using System; using System.Collections.Generic; /*using System.Linq; using System.Text; using System.Threading.Tasks;*/ class Program { static void Main(string[] args) { String s = Console.ReadLine(); String[] sarray = s.Split(' '); //?????????????????????????´? int a = int.Parse(sarray[0]); int b = ...
[["-", 8, 201, 0, 195, 8, 196, 0, 57, 0, 95], ["+", 8, 201, 0, 195, 8, 196, 0, 57, 0, 121], ["+", 8, 201, 0, 195, 8, 196, 0, 57, 0, 24], ["+", 0, 195, 8, 196, 0, 57, 15, 16, 31, 22], ["+", 0, 195, 8, 196, 0, 57, 15, 16, 17, 60], ["+", 0, 195, 8, 196, 0, 57, 15, 16, 12, 22], ["+", 8, 201, 0, 195, 8, 196, 0, 57, 0, 25]]
8
123
7
using System; class Compare { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); int a = int.Parse(str[0]); int b = int.Parse(str[1]); if (a > b) { Console.WriteLine("a > b"); } else if (a < b) { Console.WriteLine("a > b"); } else { Console.Write...
using System; class Compare { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); int a = int.Parse(str[0]); int b = int.Parse(str[1]); if (a > b) { Console.WriteLine("a > b"); } else if (a < b) { Console.WriteLine("a < b"); } else { Console.Write...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
109
2
using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; using System.Text; namespace LogicSummoner { class Program { static void Main(string[] args) { var nums = GetNumbers(); var operate = string.Empty; if (nums[0] < nums[1]) { operate = "<...
using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; using System.Text; namespace LogicSummoner { class Program { static void Main(string[] args) { var nums = GetNumbers(); var operate = string.Empty; if (nums[0] < nums[1]) { operate = "<...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
246
2
using System; class Program { static void Main() { string[] str = Console.ReadLine().Split(' '); double a = double.Parse(str[0]); double b = double.Parse(str[1]); if (a > b) { Console.WriteLine("a < b"); } else { if (a < b) { Console.WriteLine("a < b"); } else { ...
using System; class Program { static void Main() { string[] str = Console.ReadLine().Split(' '); double a = double.Parse(str[0]); double b = double.Parse(str[1]); if (a > b) { Console.WriteLine("a > b"); } else { if (a < b) { Console.WriteLine("a < b"); } else { ...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
107
2
using System; namespace Branch_on_Condition { class Small__Large__or_Equal { static void Main(string[] args) { var token = Console.ReadLine().Split(' '); int a = int.Parse(token[0]); int b = int.Parse(token[1]); if (a > b) Console.WriteLine("a>b"); if (a < b) Console.WriteLine("a<b");...
using System; namespace Branch_on_Condition { class Small__Large__or_Equal { static void Main(string[] args) { var token = Console.ReadLine().Split(' '); int a = int.Parse(token[0]); int b = int.Parse(token[1]); if (a > b) Console.WriteLine("a > b"); if (a < b) Console.WriteLine("a < ...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
109
6
using System; using System.Linq; namespace BigOrSmall { public class Program { static void Main(string[] args) { var InputValue = Console.ReadLine() .Split(' ') .Select(x => Convert.ToInt32(x)) .ToList<int>(); if (InputValue[0] < Inp...
using System; using System.Linq; namespace BigOrSmall { public class Program { static void Main(string[] args) { var InputValue = Console.ReadLine() .Split(' ') .Select(x => Convert.ToInt32(x)) .ToList<int>(); if (InputValue[0] < Inp...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
132
2
using System; namespace AizuOnline { class Program { static void Main() { char[] c = new char[] { ' ' }; string[] ab = Console.ReadLine().Split(c); short a = Int16.Parse(ab[0]); short b = Int16.Parse(ab[1]); if (a > b) { Console.WriteLine("a > b"); } else if (a < b) { Console.Wri...
using System; namespace AizuOnline { class Program { static void Main() { char[] c = new char[] { ' ' }; string[] ab = Console.ReadLine().Split(c); short a = Int16.Parse(ab[0]); short b = Int16.Parse(ab[1]); if (a > b) { Console.WriteLine("a > b"); } else if (a < b) { Console.Wri...
[["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 62], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
119
3
using System; using System.Linq; class TestClass { static void Main(string[] args) { int[] num = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray(); if (num[0] < num[1]) { Console.WriteLine("a < b"); } else if (num[0] > num[1]) { Console.WriteLine("a > b"); } else {...
using System; using System.Linq; class TestClass { static void Main(string[] args) { int[] num = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray(); if (num[0] < num[1]) { Console.WriteLine("a < b"); } else if (num[0] > num[1]) { Console.WriteLine("a > b"); } else {...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
116
2
using System; class Program { static void Main() { int a, b; string inp = Console.ReadLine(); string[] data = inp.Split(' '); a = int.Parse(data[0]); b = int.Parse(data[1]); if (a >= -1000 && b <= 1000) { if (a == b) { Console.WriteLine("a == b"); } else if (a < b) { ...
using System; class Program { static void Main() { int a, b; string inp = Console.ReadLine(); string[] data = inp.Split(' '); a = int.Parse(data[0]); b = int.Parse(data[1]); if (a >= -1000 && b <= 1000) { if (a == b) { Console.WriteLine("a == b"); } else if (a < b) { ...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
132
2
using System; class test { static void Main() { int a, b; string[] str = Console.ReadLine().Split(' '); a = int.Parse(str[0]); b = int.Parse(str[1]); if (a < b) { Console.WriteLine("a < b"); } else if (a > b) { Console.WriteLine("a < b"); } else { Console.WriteLine("a == ...
using System; class test { static void Main() { int a, b; string[] str = Console.ReadLine().Split(' '); a = int.Parse(str[0]); b = int.Parse(str[1]); if (a < b) { Console.WriteLine("a < b"); } else if (a > b) { Console.WriteLine("a > b"); } else { Console.WriteLine("a == ...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
108
2
using System; namespace ConsoleApp_ITP1_2_A { class Program { static void Main(string[] args) { string input = Console.ReadLine(); string[] value = input.Split(' '); int a = Int32.Parse(value[0]); int b = Int32.Parse(value[1]); if (a < b) { Console.WriteLine("a < b"); } else if (a > b...
using System; namespace ConsoleApp_ITP1_2_A { class Program { static void Main(string[] args) { string input = Console.ReadLine(); string[] value = input.Split(' '); int a = Int32.Parse(value[0]); int b = Int32.Parse(value[1]); if (a < b) { Console.WriteLine("a < b"); } else if (a > b...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
118
2
using System; namespace _2_1 { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); int a, b; a = int.Parse(str[0]); b = int.Parse(str[1]); if (a > b) Console.WriteLine("a>b"); else if (a < b) Console.WriteLine("a < b"); else if (a ...
using System; namespace _2_1 { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); int a, b; a = int.Parse(str[0]); b = int.Parse(str[1]); if (a > b) Console.WriteLine("a > b"); else if (a < b) Console.WriteLine("a < b"); else if (...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
116
4
using System; class Program { static void Main(string[] args) { String[] compare = Console.ReadLine().Split(' '); int a = int.Parse(compare[0]); int b = int.Parse(compare[1]); int c = int.Parse(compare[2]); if (a < b || b < c) { Console.WriteLine("Yes"); } else { Console.Wr...
using System; class Program { static void Main(string[] args) { String[] compare = Console.ReadLine().Split(' '); int a = int.Parse(compare[0]); int b = int.Parse(compare[1]); int c = int.Parse(compare[2]); if (a < b && b < c) { Console.WriteLine("Yes"); } else { Console.WriteLin...
[["-", 0, 195, 8, 196, 0, 57, 15, 16, 17, 106], ["+", 0, 195, 8, 196, 0, 57, 15, 16, 17, 98]]
8
108
2
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int a = int.Parse(s[0]); int b = int.Parse(s[1]); int c = int.Parse(s[2]); if (a < b && b < c) // ???...
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int a = int.Parse(s[0]); int b = int.Parse(s[1]); int c = int.Parse(s[2]); if (a < b && b < c) // ???...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
155
4
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication9 { class Program { static void Main(string[] args) { String[] str = Console.ReadLine().Split(' '); int a = int.Parse(str[0]); int b = int.Parse(str[1]); int c = int.Parse(str[2]); if (a < b && b < c) {...
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication9 { class Program { static void Main(string[] args) { String[] str = Console.ReadLine().Split(' '); int a = int.Parse(str[0]); int b = int.Parse(str[1]); int c = int.Parse(str[2]); if (a < b && b < c) {...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
124
2
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int a = int.Parse(s[0]); int b = int.Parse(s[1]); int c = int.Parse(s[2]); if ((a < b) & (a < c) & (b < c)) { Console.WriteLine("YES"); } else { ...
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int a = int.Parse(s[0]); int b = int.Parse(s[1]); int c = int.Parse(s[2]); if ((a < b) & (a < c) & (b < c)) { Console.WriteLine("Yes"); } else { ...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
122
4
using System; namespace ConsoleApplication17 { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); int a = int.Parse(str[0]); int b = int.Parse(str[1]); int c = int.Parse(str[2]); if (a < b && b < c) { Console.WriteLine("YES"); } else { ...
using System; namespace ConsoleApplication17 { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); int a = int.Parse(str[0]); int b = int.Parse(str[1]); int c = int.Parse(str[2]); if (a < b && b < c) { Console.WriteLine("Yes"); } else { ...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
112
4
using System; namespace Aizu { class Program { static void Main(string[] args) { var input = Console.ReadLine(); var inputs = input.Split(' '); var a = int.Parse(inputs[0]); var b = int.Parse(inputs[1]); var c = int.Parse(inputs[2]); if (a < b) { if (b < c) { Console.WriteLine(...
using System; namespace Aizu { class Program { static void Main(string[] args) { var input = Console.ReadLine(); var inputs = input.Split(' '); var a = int.Parse(inputs[0]); var b = int.Parse(inputs[1]); var c = int.Parse(inputs[2]); if (a < b && b < c) { Console.WriteLine("Yes"); ...
[["-", 8, 201, 0, 195, 8, 196, 0, 57, 0, 25], ["-", 0, 195, 8, 196, 0, 57, 64, 196, 0, 45], ["-", 8, 196, 0, 57, 64, 196, 0, 57, 0, 121], ["-", 8, 196, 0, 57, 64, 196, 0, 57, 0, 24], ["+", 0, 195, 8, 196, 0, 57, 15, 16, 17, 98], ["-", 0, 57, 64, 196, 0, 57, 75, 196, 0, 46]]
8
119
6
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication3 { class Program { static void Main(string[] args) { var abc = Console.ReadLine().Split().Select(int.Parse).ToArray(); var a = abc[0]; var b = abc[1]; var c = abc[2]; if (a < b &...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication3 { class Program { static void Main(string[] args) { var abc = Console.ReadLine().Split().Select(int.Parse).ToArray(); var a = abc[0]; var b = abc[1]; var c = abc[2]; if (a < b &...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
118
4
using System; class ITP1_2_B { public static void Main() { string[] Input = Console.ReadLine().Split(' '); int a = int.Parse(Input[0]); int b = int.Parse(Input[1]); int c = int.Parse(Input[2]); if (a < b && b < c) Console.WriteLine("YES"); else Console.WriteLine("NO"); } }
using System; class ITP1_2_B { public static void Main() { string[] Input = Console.ReadLine().Split(' '); int a = int.Parse(Input[0]); int b = int.Parse(Input[1]); int c = int.Parse(Input[2]); if (a < b && b < c) Console.WriteLine("Yes"); else Console.WriteLine("No"); } }
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
101
4
using System; namespace ITP1_2_B { class Program { static void Main(string[] args) { string[] strs = Console.ReadLine().Split(' '); int a = int.Parse(strs[0]); int b = int.Parse(strs[1]); int c = int.Parse(strs[2]); if (a > b && b > c) Console.WriteLine("Yes"); else Console.WriteL...
using System; namespace ITP1_2_B { class Program { static void Main(string[] args) { string[] strs = Console.ReadLine().Split(' '); int a = int.Parse(strs[0]); int b = int.Parse(strs[1]); int c = int.Parse(strs[2]); if (a < b && b < c) Console.WriteLine("Yes"); else Console.WriteL...
[["-", 8, 196, 0, 57, 15, 16, 31, 16, 17, 47], ["+", 8, 196, 0, 57, 15, 16, 31, 16, 17, 18], ["-", 8, 196, 0, 57, 15, 16, 12, 16, 17, 47], ["+", 8, 196, 0, 57, 15, 16, 12, 16, 17, 18]]
8
108
4
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string ABC = Console.ReadLine(); string[] abc = (ABC.Split(' ')); int a = int.Parse(abc[0]); int b = int.Parse(abc[1]); int c = int.Parse(abc[2]); //?????¶????¨???\ if (a < b) { ...
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string ABC = Console.ReadLine(); string[] abc = (ABC.Split(' ')); int a = int.Parse(abc[0]); int b = int.Parse(abc[1]); int c = int.Parse(abc[2]); //?????¶????¨???\ if (a < b && b < c)...
[["-", 8, 201, 0, 195, 8, 196, 0, 57, 0, 25], ["-", 0, 195, 8, 196, 0, 57, 64, 196, 0, 45], ["-", 8, 196, 0, 57, 64, 196, 0, 57, 0, 121], ["-", 8, 196, 0, 57, 64, 196, 0, 57, 0, 24], ["+", 0, 195, 8, 196, 0, 57, 15, 16, 17, 98], ["-", 0, 57, 64, 196, 0, 57, 75, 196, 0, 46]]
8
124
6
using System; namespace ConsoleApp9 { class Program { static void Main(string[] args) { var input = Console.ReadLine().Split(' '); int a = int.Parse(input[0]); int b = int.Parse(input[1]); int c = int.Parse(input[2]); if (a > b && b > c) { Console.WriteLine("Yes"); } else { Consol...
using System; namespace ConsoleApp9 { class Program { static void Main(string[] args) { var input = Console.ReadLine().Split(' '); int a = int.Parse(input[0]); int b = int.Parse(input[1]); int c = int.Parse(input[2]); if (a < b && b < c) { Console.WriteLine("Yes"); } else { Consol...
[["-", 8, 196, 0, 57, 15, 16, 31, 16, 17, 47], ["+", 8, 196, 0, 57, 15, 16, 31, 16, 17, 18], ["-", 8, 196, 0, 57, 15, 16, 12, 16, 17, 47], ["+", 8, 196, 0, 57, 15, 16, 12, 16, 17, 18]]
8
116
4
using System; namespace test { class Program { static void Main(string[] args) { int a, b, c; string[] str = Console.ReadLine().Split(' '); a = int.Parse(str[0]); b = int.Parse(str[1]); c = int.Parse(str[2]); if (a < b || b < c) { Console.WriteLine("Yes"); } else { Console.Wri...
using System; namespace test { class Program { static void Main(string[] args) { int a, b, c; string[] str = Console.ReadLine().Split(' '); a = int.Parse(str[0]); b = int.Parse(str[1]); c = int.Parse(str[2]); if (a < b && b < c) { Console.WriteLine("Yes"); } else { Console.Wri...
[["-", 0, 195, 8, 196, 0, 57, 15, 16, 17, 106], ["+", 0, 195, 8, 196, 0, 57, 15, 16, 17, 98]]
8
116
2
using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; using System.Text; namespace LogicSummoner { class Program { static void Main(string[] args) { var nums = GetNumbers(); var flag = true; for (int i = 0; i < nums.Count - 1; i++) { flag |...
using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; using System.Text; namespace LogicSummoner { class Program { static void Main(string[] args) { var nums = GetNumbers(); var flag = true; for (int i = 0; i < nums.Count - 1; i++) { flag &...
[["-", 8, 196, 0, 1, 0, 11, 0, 202, 0, 160], ["+", 8, 196, 0, 1, 0, 11, 0, 202, 0, 161]]
8
239
2
using System; public class hello { public static void Main() { string[] line = Console.ReadLine().Trim().Split(' '); var a = int.Parse(line[0]); var b = int.Parse(line[1]); var c = int.Parse(line[2]); if (a < b && b < c) Console.WriteLine("Ok"); else Console.WriteLine("No"); } }
using System; public class hello { public static void Main() { string[] line = Console.ReadLine().Trim().Split(' '); var a = int.Parse(line[0]); var b = int.Parse(line[1]); var c = int.Parse(line[2]); if (a < b && b < c) Console.WriteLine("Yes"); else Console.WriteLine("No"); } ...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
106
2
using System; using System.Linq; namespace paizaTest { internal class Program { private static void Main(string[] args) { var readLine = Console.ReadLine().Split(' ').Select(int.Parse).ToList(); var resultFlag = true; for (var i = 0; i < readLine.Count() - 1; i++) { if (readLine[i] > readLine[i + 1...
using System; using System.Linq; namespace paizaTest { internal class Program { private static void Main(string[] args) { var readLine = Console.ReadLine().Split(' ').Select(int.Parse).ToList(); var resultFlag = true; for (var i = 0; i < readLine.Count() - 1; i++) { if (readLine[i] >= readLine[i + ...
[["-", 0, 7, 8, 196, 0, 57, 15, 16, 17, 47], ["+", 0, 7, 8, 196, 0, 57, 15, 16, 17, 20]]
8
118
2
using System; namespace AizuOnline { internal class Program { private static void Main(string[] args) { var x = Console.ReadLine().Split(' '); var a = Convert.ToInt32(x[0]); var b = Convert.ToInt32(x[1]); var c = Convert.ToInt32(x[2]); if (a < b && b < c) { Console.WriteLine("Yes"); } e...
using System; namespace AizuOnline { internal class Program { private static void Main(string[] args) { var x = Console.ReadLine().Split(' '); var a = Convert.ToInt32(x[0]); var b = Convert.ToInt32(x[1]); var c = Convert.ToInt32(x[2]); if (a < b && b < c) { Console.WriteLine("Yes"); } e...
[["-", 0, 195, 8, 196, 0, 57, 75, 57, 0, 121], ["-", 0, 195, 8, 196, 0, 57, 75, 57, 0, 24], ["-", 8, 196, 0, 57, 75, 57, 15, 16, 31, 22], ["-", 8, 196, 0, 57, 75, 57, 15, 16, 17, 18], ["-", 8, 196, 0, 57, 75, 57, 15, 16, 12, 22], ["-", 0, 195, 8, 196, 0, 57, 75, 57, 0, 25]]
8
118
6
using System; using System.Collections.Generic; class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); int a = int.Parse(str[0]); int b = int.Parse(str[1]); int c = int.Parse(str[2]); string s = ""; if (a < b && b < c) { s = "YES"; } else { ...
using System; using System.Collections.Generic; class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); int a = int.Parse(str[0]); int b = int.Parse(str[1]); int c = int.Parse(str[2]); string s = ""; if (a < b && b < c) { s = "Yes"; } else { ...
[["-", 64, 196, 0, 1, 0, 11, 12, 5, 0, 222], ["+", 64, 196, 0, 1, 0, 11, 12, 5, 0, 222], ["-", 75, 196, 0, 1, 0, 11, 12, 5, 0, 222], ["+", 75, 196, 0, 1, 0, 11, 12, 5, 0, 222]]
8
122
4
using System; namespace ITP_1_2_B { class Program { static void Main(string[] args) { string[] input = Console.ReadLine().Split(' '); int a = int.Parse(input[0]); int b = int.Parse(input[1]); int c = int.Parse(input[2]); if (a < b && b < c) Console.WriteLine("YES"); else Console.W...
using System; namespace ITP_1_2_B { class Program { static void Main(string[] args) { string[] input = Console.ReadLine().Split(' '); int a = int.Parse(input[0]); int b = int.Parse(input[1]); int c = int.Parse(input[2]); if (a < b && b < c) Console.WriteLine("Yes"); else Console.W...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
108
4
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int a = int.Parse(s[0]); int b = int.Parse(s[1]); int c = int.Parse(s[2]); int temp = 0; if (a > b...
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int a = int.Parse(s[0]); int b = int.Parse(s[1]); int c = int.Parse(s[2]); int temp = 0; if (a > b...
[["-", 0, 57, 64, 196, 0, 1, 0, 11, 31, 22], ["-", 64, 196, 0, 1, 0, 11, 0, 202, 0, 32], ["+", 64, 196, 0, 1, 0, 11, 0, 202, 0, 32], ["+", 0, 57, 64, 196, 0, 1, 0, 11, 12, 22]]
8
176
4
using System; namespace ConsoleApplication35 { class Program { static void Main(string[] args) { string s = Console.ReadLine(); string[] ss = s.Split(' '); int a = int.Parse(ss[0]); int b = int.Parse(ss[1]); int c = int.Parse(ss[2]); int d = 0; if (a > b) { d = a; a = b; ...
using System; namespace ConsoleApplication35 { class Program { static void Main(string[] args) { string s = Console.ReadLine(); string[] ss = s.Split(' '); int a = int.Parse(ss[0]); int b = int.Parse(ss[1]); int c = int.Parse(ss[2]); int d = 0; if (a > b) { d = a; a = b; ...
[["-", 0, 57, 64, 196, 0, 1, 0, 11, 12, 22], ["-", 8, 196, 0, 57, 64, 196, 0, 1, 0, 35], ["-", 0, 57, 64, 196, 0, 1, 0, 11, 31, 22], ["-", 64, 196, 0, 1, 0, 11, 0, 202, 0, 32]]
8
176
4
using System; namespace test { class program { static void Main() { string[] str = Console.ReadLine().Split(' '); int[] num = new int[3]; num[0] = int.Parse(str[0]); num[1] = int.Parse(str[1]); num[2] = int.Parse(str[2]); // Array????????????Sort??????????????§???????????? Array.Sort(num);...
using System; namespace test { class program { static void Main() { string[] str = Console.ReadLine().Split(' '); int[] num = new int[3]; num[0] = int.Parse(str[0]); num[1] = int.Parse(str[1]); num[2] = int.Parse(str[2]); // Array????????????Sort??????????????§???????????? Array.Sort(num);...
[["-", 31, 16, 31, 16, 31, 16, 12, 252, 0, 104], ["+", 31, 16, 31, 16, 31, 16, 12, 5, 0, 62], ["-", 0, 28, 0, 16, 31, 16, 12, 252, 0, 104], ["+", 0, 28, 0, 16, 31, 16, 12, 5, 0, 62]]
8
128
8
using System; class Program { static void Main() { string[] str = Console.ReadLine().Split(' '); int[] ans = new int[3]; ans[0] = int.Parse(str[0]); ans[1] = int.Parse(str[1]); ans[2] = int.Parse(str[2]); // Sort Array.Sort(str); // Output Console.WriteLine("{0} {1} {2}", ans[0]...
using System; class Program { static void Main() { string[] str = Console.ReadLine().Split(' '); int[] ans = new int[3]; ans[0] = int.Parse(str[0]); ans[1] = int.Parse(str[1]); ans[2] = int.Parse(str[2]); // Sort Array.Sort(ans); // Output Console.WriteLine("{0} {1} {2}", ans[0]...
[["-", 0, 1, 0, 213, 3, 4, 0, 28, 0, 22], ["+", 0, 1, 0, 213, 3, 4, 0, 28, 0, 22]]
8
121
2
using System; namespace shimada { class Program { static void Main(string[] args) { String x = Console.ReadLine(); String[] array = x.Split(' '); int a = int.Parse(array[0]); int b = int.Parse(array[1]); int c = int.Parse(array[2]); int[] temp = new int[3] { a, b, c }; for (int i = 0; ...
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { String x = Console.ReadLine(); //???????????????????????£??\ String[] array = x.Split(' '); //??°???????????´????????£??\ int a = int.Parse(array[0]); int b = int.Parse(array[1]); ...
[["-", 36, 36, 36, 36, 0, 208, 0, 209, 141, 22], ["+", 36, 36, 36, 36, 0, 208, 0, 209, 141, 22], ["-", 0, 7, 10, 198, 0, 200, 0, 212, 0, 203], ["+", 0, 7, 10, 198, 0, 200, 0, 212, 0, 203], ["-", 0, 7, 8, 196, 0, 7, 15, 16, 12, 203], ["+", 0, 7, 8, 196, 0, 7, 15, 16, 12, 22], ["-", 0, 7, 8, 196, 0, 7, 26, 223, 0, 29], [...
8
201
8
using System; public class Class1 { static void Main() { string abc = Console.ReadLine(); string[] abcArray = abc.Split(); int a = int.Parse(abcArray[0]); int b = int.Parse(abcArray[1]); int c = int.Parse(abcArray[2]); int s = 0; if (a < b) { if (a > c) // c<a<b { s =...
using System; public class Class1 { static void Main() { string abc = Console.ReadLine(); string[] abcArray = abc.Split(); int a = int.Parse(abcArray[0]); int b = int.Parse(abcArray[1]); int c = int.Parse(abcArray[2]); int s = 0; if (a < b) { if (a > c) // c<a<b { s =...
[["-", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222], ["+", 0, 213, 3, 4, 0, 28, 0, 5, 0, 222]]
8
222
2
using System; namespace test { class Swap { public void swap(ref int x, ref int y) { int t = x; x = y; y = t; } } class Program { static void Main(string[] args) { Swap ob = new Swap(); int a, b, c; string[] str = Console.ReadLine().Split(' '); a = int.Parse(str[0]); b = int.Pars...
using System; namespace test { class Swap { public void swap(ref int x, ref int y) { int t = x; x = y; y = t; } } class Program { static void Main(string[] args) { Swap ob = new Swap(); int a, b, c; string[] str = Console.ReadLine().Split(' '); a = int.Parse(str[0]); b = int.Pars...
[["+", 0, 195, 8, 196, 0, 57, 64, 196, 0, 46], ["-", 0, 57, 64, 196, 0, 57, 64, 196, 0, 46]]
8
194
4
using System; class Program { static void Main(string[] args) { string[] num = Console.ReadLine().Split(' '); int a, b, c, d; a = int.Parse(num[0]); b = int.Parse(num[1]); c = int.Parse(num[2]); if (a > b) { d = a; a = b; b = d; } else if (b > c) { d = b; b...
using System; class Program { static void Main(string[] args) { string[] num = Console.ReadLine().Split(' '); int a, b, c, d; a = int.Parse(num[0]); b = int.Parse(num[1]); c = int.Parse(num[2]); if (a > b) { d = a; a = b; b = d; } if (b > c) { d = b; b...
[["-", 8, 201, 0, 195, 8, 196, 0, 57, 0, 95], ["-", 0, 195, 8, 196, 0, 57, 75, 57, 0, 95]]
8
162
2
using System; namespace ITP_1_2_C { class Program { static void Main(string[] args) { string[] input = Console.ReadLine().Split(' '); int a = int.Parse(input[0]); int b = int.Parse(input[1]); int c = int.Parse(input[2]); if (a > b) { int tmp = b; b = a; a = tmp; } else if (...
using System; namespace ITP_1_2_C { class Program { static void Main(string[] args) { string[] input = Console.ReadLine().Split(' '); int a = int.Parse(input[0]); int b = int.Parse(input[1]); int c = int.Parse(input[2]); if (a > b) { int tmp = b; b = a; a = tmp; } if (b ...
[["-", 8, 201, 0, 195, 8, 196, 0, 57, 0, 95], ["-", 0, 195, 8, 196, 0, 57, 75, 57, 0, 95]]
8
159
2
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ITP1_2_D { class Program { static void Main(string[] args) { string[] input = Console.ReadLine().Split(' '); int W = int.Parse(input[0]); int H = int.Parse(input[1]); int x = ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ITP1_2_D { class Program { static void Main(string[] args) { string[] input = Console.ReadLine().Split(' '); int W = int.Parse(input[0]); int H = int.Parse(input[1]); int x = ...
[["-", 15, 16, 31, 16, 31, 16, 31, 16, 17, 47], ["+", 15, 16, 31, 16, 31, 16, 31, 16, 17, 20], ["-", 15, 16, 31, 16, 31, 16, 12, 16, 17, 18], ["+", 15, 16, 31, 16, 31, 16, 12, 16, 17, 19], ["-", 0, 57, 15, 16, 31, 16, 12, 16, 17, 47], ["+", 0, 57, 15, 16, 31, 16, 12, 16, 17, 20], ["-", 8, 196, 0, 57, 15, 16, 12, 16, 17...
8
174
8
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AOJHelloWorld1 { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); int W = int.Parse(str[0]); int H = int.Parse(str[1]); int x = ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AOJHelloWorld1 { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(' '); int W = int.Parse(str[0]); int H = int.Parse(str[1]); int x = ...
[["-", 15, 16, 31, 16, 31, 16, 31, 16, 17, 18], ["+", 15, 16, 31, 16, 31, 16, 31, 16, 17, 47], ["-", 15, 16, 31, 16, 31, 16, 12, 16, 17, 47], ["+", 15, 16, 31, 16, 31, 16, 12, 16, 17, 18], ["-", 0, 57, 15, 16, 31, 16, 12, 16, 17, 18], ["+", 0, 57, 15, 16, 31, 16, 12, 16, 17, 47], ["-", 8, 196, 0, 57, 15, 16, 12, 16, 17...
8
178
12
using System; class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int W, H, x, y, r; W = int.Parse(s[0]); H = int.Parse(s[1]); x = int.Parse(s[2]); y = int.Parse(s[3]); r = int.Parse(s[4]); if (W >= x + r && 0 < x - r && H >= y + r && 0 < y - r...
using System; class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int W, H, x, y, r; W = int.Parse(s[0]); H = int.Parse(s[1]); x = int.Parse(s[2]); y = int.Parse(s[3]); r = int.Parse(s[4]); if (W >= x + r && 0 <= x - r && H >= y + r && 0 <= y -...
[["-", 15, 16, 31, 16, 31, 16, 12, 16, 17, 18], ["+", 15, 16, 31, 16, 31, 16, 12, 16, 17, 19], ["-", 8, 196, 0, 57, 15, 16, 12, 16, 17, 18], ["+", 8, 196, 0, 57, 15, 16, 12, 16, 17, 19]]
8
152
4
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CirRec { class Program { static void Main(string[] args) { String[] input = Console.ReadLine().Split(' '); int W = int.Parse(input[0]); int H = int.Parse(input[1]); int x = int.Parse(input[2]); int y =...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CirRec { class Program { static void Main(string[] args) { String[] input = Console.ReadLine().Split(' '); int W = int.Parse(input[0]); int H = int.Parse(input[1]); int x = int.Parse(input[2]); int y =...
[["-", 15, 16, 31, 16, 31, 16, 31, 16, 17, 18], ["+", 15, 16, 31, 16, 31, 16, 31, 16, 17, 19], ["-", 15, 16, 31, 16, 31, 16, 12, 16, 17, 18], ["+", 15, 16, 31, 16, 31, 16, 12, 16, 17, 19], ["-", 0, 57, 15, 16, 31, 16, 12, 16, 17, 47], ["+", 0, 57, 15, 16, 31, 16, 12, 16, 17, 20], ["-", 8, 196, 0, 57, 15, 16, 12, 16, 17...
8
183
8
using System; class AOJ { public static void Main() { var input = Console.ReadLine().Trim().Split(' '); int W = int.Parse(input[0]); int H = int.Parse(input[1]); int x = int.Parse(input[2]); int y = int.Parse(input[3]); int r = int.Parse(input[4]); if (x - r < 0 || x + r >= W) { Co...
using System; class AOJ { public static void Main() { var input = Console.ReadLine().Trim().Split(' '); int W = int.Parse(input[0]); int H = int.Parse(input[1]); int x = int.Parse(input[2]); int y = int.Parse(input[3]); int r = int.Parse(input[4]); if (x - r < 0 || x + r > W) { Con...
[["-", 8, 196, 0, 57, 15, 16, 12, 16, 17, 20], ["+", 8, 196, 0, 57, 15, 16, 12, 16, 17, 47], ["-", 0, 57, 75, 57, 15, 16, 12, 16, 17, 20], ["+", 0, 57, 75, 57, 15, 16, 12, 16, 17, 47]]
8
163
4
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string str = Console.ReadLine(); string[] str2 = str.Split(); int W = int.Parse(str2[0]); int H = int.Parse(str2[1]); int x = int.Parse(str2[2]); int y = int.Parse(str2[3]); int r = int.Parse(s...
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string str = Console.ReadLine(); string[] str2 = str.Split(); int W = int.Parse(str2[0]); int H = int.Parse(str2[1]); int x = int.Parse(str2[2]); int y = int.Parse(str2[3]); int r = int.Parse(s...
[["-", 0, 57, 15, 16, 12, 16, 12, 16, 12, 22], ["+", 0, 57, 15, 16, 12, 16, 12, 16, 12, 22]]
8
162
2
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Contest { class Program { static int Main(string[] args) { new Program().Process(); return 0; } private CommonInput cin; private void Process() { this.cin = new CommonInput(); int W, H, x, y, r; ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Contest { class Program { static int Main(string[] args) { new Program().Process(); return 0; } private CommonInput cin; private void Process() { this.cin = new CommonInput(); int W, H, x, y, r; ...
[["-", 31, 16, 31, 16, 12, 16, 31, 16, 31, 22], ["+", 31, 16, 31, 16, 12, 16, 31, 16, 31, 22]]
8
362
2
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { String[] strArray = Console.ReadLine().Split(' '); int[] intArray = new int[strArray.Length]; for (int i = 0; i < strArray.Length; ++i) ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { String[] strArray = Console.ReadLine().Split(' '); int[] intArray = new int[strArray.Length]; for (int i = 0; i < strArray.Length; ++i) ...
[["-", 15, 16, 31, 16, 31, 16, 31, 16, 17, 47], ["+", 15, 16, 31, 16, 31, 16, 31, 16, 17, 20], ["-", 15, 16, 31, 16, 31, 16, 12, 16, 17, 18], ["+", 15, 16, 31, 16, 31, 16, 12, 16, 17, 19], ["-", 0, 57, 15, 16, 31, 16, 12, 16, 17, 47], ["+", 0, 57, 15, 16, 31, 16, 12, 16, 17, 20], ["-", 8, 196, 0, 57, 15, 16, 12, 16, 17...
8
192
8
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int w = int.Parse(s[0]); int h = int.Parse(s[1]); int x = int.Parse(s[2]); int y = int.Parse(s[3]); ...
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int w = int.Parse(s[0]); int h = int.Parse(s[1]); int x = int.Parse(s[2]); int y = int.Parse(s[3]); ...
[["-", 31, 23, 0, 16, 31, 23, 0, 16, 17, 47], ["+", 31, 23, 0, 16, 31, 23, 0, 16, 17, 20], ["-", 31, 23, 0, 16, 12, 23, 0, 16, 17, 18], ["+", 31, 23, 0, 16, 12, 23, 0, 16, 17, 19], ["-", 12, 23, 0, 16, 31, 23, 0, 16, 17, 47], ["+", 12, 23, 0, 16, 31, 23, 0, 16, 17, 20], ["-", 12, 23, 0, 16, 12, 23, 0, 16, 17, 18], ["+"...
8
196
8
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication9 { class Program { static void Main(string[] args) { String[] str = Console.ReadLine().Split(' '); int W = int.Parse(str[0]); int H = int.Parse(str[1]); int x = int.Parse(str[2]); int y = int.Parse(str...
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication9 { class Program { static void Main(string[] args) { String[] str = Console.ReadLine().Split(' '); int W = int.Parse(str[0]); int H = int.Parse(str[1]); int x = int.Parse(str[2]); int y = int.Parse(str...
[["-", 8, 196, 0, 57, 15, 16, 31, 16, 17, 47], ["+", 8, 196, 0, 57, 15, 16, 31, 16, 17, 20], ["-", 8, 196, 0, 57, 15, 16, 12, 16, 17, 18], ["+", 8, 196, 0, 57, 15, 16, 12, 16, 17, 19], ["-", 64, 196, 0, 57, 15, 16, 31, 16, 17, 47], ["+", 64, 196, 0, 57, 15, 16, 31, 16, 17, 20], ["-", 64, 196, 0, 57, 15, 16, 12, 16, 17,...
8
182
8
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int w = int.Parse(s[0]); int h = int.Parse(s[1]); int x = int.Parse(s[2]); int y = int.Parse(s[3]); int r = int.Parse(s[4]); if ((x - r >= 0) && (x +...
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int w = int.Parse(s[0]); int h = int.Parse(s[1]); int x = int.Parse(s[2]); int y = int.Parse(s[3]); int r = int.Parse(s[4]); if ((x - r >= 0) && (x +...
[["-", 15, 16, 12, 23, 0, 16, 31, 16, 31, 22], ["+", 15, 16, 12, 23, 0, 16, 31, 16, 31, 22]]
8
162
2
using System; namespace ConsoleApplication10 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int W = int.Parse(s[0]); int H = int.Parse(s[1]); int x = int.Parse(s[2]); int y = int.Parse(s[3]); int r = int.Parse(s[4]); if (x + r <= W && y +...
using System; namespace ConsoleApplication10 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int W = int.Parse(s[0]); int H = int.Parse(s[1]); int x = int.Parse(s[2]); int y = int.Parse(s[3]); int r = int.Parse(s[4]); if (x + r <= W && y +...
[["-", 0, 57, 15, 16, 31, 16, 12, 16, 12, 22], ["+", 0, 57, 15, 16, 31, 16, 12, 16, 12, 203], ["-", 8, 196, 0, 57, 15, 16, 12, 16, 12, 22], ["+", 8, 196, 0, 57, 15, 16, 12, 16, 12, 203]]
8
154
4
using System; using System.Collections; class main { public static void Main() { string[] input = Console.ReadLine().Split(); int W = int.Parse(input[0]), H = int.Parse(input[1]), x = int.Parse(input[2]), y = int.Parse(input[3]), r = int.Parse(input[4]); if (x - r > 0 && y - r > 0 && x + r...
using System; using System.Collections; class main { public static void Main() { string[] input = Console.ReadLine().Split(); int W = int.Parse(input[0]), H = int.Parse(input[1]), x = int.Parse(input[2]), y = int.Parse(input[3]), r = int.Parse(input[4]); if (x - r >= 0 && y - r >= 0 && x +...
[["-", 15, 16, 31, 16, 31, 16, 31, 16, 17, 47], ["+", 15, 16, 31, 16, 31, 16, 31, 16, 17, 20], ["-", 15, 16, 31, 16, 31, 16, 12, 16, 17, 47], ["+", 15, 16, 31, 16, 31, 16, 12, 16, 17, 20], ["-", 0, 57, 15, 16, 31, 16, 12, 16, 17, 18], ["+", 0, 57, 15, 16, 31, 16, 12, 16, 17, 19], ["-", 8, 196, 0, 57, 15, 16, 12, 16, 17...
8
143
8
// Circle_in_a_Rectangle.cs // ????????¢?????????????????????????????????????????????????????°????????? // ????????¢?????????????????????????????¨??????????????????????????§?¨? (W,H) // ????????????????????????????????????????????????????????§?¨? (x,y) ??¨?????? // r ??§????????????????????? // ??\????????????????????...
// Circle_in_a_Rectangle.cs // ????????¢?????????????????????????????????????????????????????°????????? // ????????¢?????????????????????????????¨??????????????????????????§?¨? (W,H) // ????????????????????????????????????????????????????????§?¨? (x,y) ??¨?????? // r ??§????????????????????? // ??\????????????????????...
[["-", 15, 16, 31, 16, 31, 16, 31, 16, 17, 18], ["+", 15, 16, 31, 16, 31, 16, 31, 16, 17, 19], ["-", 15, 16, 31, 16, 31, 16, 12, 16, 17, 47], ["+", 15, 16, 31, 16, 31, 16, 12, 16, 17, 20], ["-", 0, 57, 15, 16, 31, 16, 12, 16, 17, 47], ["+", 0, 57, 15, 16, 31, 16, 12, 16, 17, 20], ["-", 8, 196, 0, 57, 15, 16, 12, 16, 17...
8
185
8
using System; namespace test { class program { static void Main() { string[] str = Console.ReadLine().Split(' '); int W = int.Parse(str[0]); int H = int.Parse(str[1]); int x = int.Parse(str[2]); int y = int.Parse(str[3]); int r = int.Parse(str[4]); if (x - r >= 0 && x + r <= W) if (...
using System; namespace test { class program { static void Main() { string[] str = Console.ReadLine().Split(' '); int W = int.Parse(str[0]); int H = int.Parse(str[1]); int x = int.Parse(str[2]); int y = int.Parse(str[3]); int r = int.Parse(str[4]); if (x - r >= 0 && x + r <= W && y - r >=...
[["-", 8, 201, 0, 195, 8, 196, 0, 57, 0, 25], ["-", 0, 195, 8, 196, 0, 57, 64, 57, 0, 121], ["-", 0, 195, 8, 196, 0, 57, 64, 57, 0, 24], ["+", 8, 196, 0, 57, 15, 16, 31, 16, 17, 98]]
8
148
4
using System; class Program { static void Main() { string[] s = Console.ReadLine().Split(' '); int W = int.Parse(s[0]); int H = int.Parse(s[1]); int x = int.Parse(s[2]); int y = int.Parse(s[3]); int r = int.Parse(s[4]); if (x > r && x < W - r) { if (y > r && y < H - r) Consol...
using System; class Program { static void Main() { string[] s = Console.ReadLine().Split(' '); int W = int.Parse(s[0]); int H = int.Parse(s[1]); int x = int.Parse(s[2]); int y = int.Parse(s[3]); int r = int.Parse(s[4]); if (x >= r && x <= W - r) { if (y >= r && y <= H - r) Co...
[["-", 8, 196, 0, 57, 15, 16, 31, 16, 17, 47], ["+", 8, 196, 0, 57, 15, 16, 31, 16, 17, 20], ["-", 8, 196, 0, 57, 15, 16, 12, 16, 17, 18], ["+", 8, 196, 0, 57, 15, 16, 12, 16, 17, 19], ["-", 64, 196, 0, 57, 15, 16, 31, 16, 17, 47], ["+", 64, 196, 0, 57, 15, 16, 31, 16, 17, 20], ["-", 64, 196, 0, 57, 15, 16, 12, 16, 17,...
8
152
8