Skip to content

Commit

Permalink
timus.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriyVoronin committed Jan 18, 2020
0 parents commit 3d56db3
Show file tree
Hide file tree
Showing 162 changed files with 1,758 additions and 0 deletions.
Binary file added 1139/.vs/Arr6_1139/v16/.suo
Binary file not shown.
Empty file.
Binary file not shown.
6 changes: 6 additions & 0 deletions 1139/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
</configuration>
53 changes: 53 additions & 0 deletions 1139/Arr6_1139.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{3B3426A0-F664-486F-8C01-A69C85A0F919}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Arr6_1139</RootNamespace>
<AssemblyName>Arr6_1139</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
25 changes: 25 additions & 0 deletions 1139/Arr6_1139.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29306.81
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Arr6_1139", "Arr6_1139.csproj", "{3B3426A0-F664-486F-8C01-A69C85A0F919}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3B3426A0-F664-486F-8C01-A69C85A0F919}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3B3426A0-F664-486F-8C01-A69C85A0F919}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3B3426A0-F664-486F-8C01-A69C85A0F919}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3B3426A0-F664-486F-8C01-A69C85A0F919}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {11B317C8-DF39-479E-B2CC-1B92C422F5DE}
EndGlobalSection
EndGlobal
28 changes: 28 additions & 0 deletions 1139/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Arr6_1139
{
class Program
{
public static int Nod(int a, int b)
{
while (a > 0 && b > 0)
if (a > b)
a = a % b;
else
b = b % a;
return a + b;
}
static void Main(string[] args)
{
var userInput = Console.ReadLine().Split();
var n = int.Parse(userInput[0])-1;
var m = int.Parse(userInput[1])-1;
Console.WriteLine(n + m - Nod(n,m));
}
}
}
36 changes: 36 additions & 0 deletions 1139/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Arr6_1139")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Arr6_1139")]
[assembly: AssemblyCopyright("Copyright © 2019")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("3b3426a0-f664-486f-8c01-a69c85a0f919")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
Binary file added 1139/bin/Debug/Arr6_1139.exe
Binary file not shown.
6 changes: 6 additions & 0 deletions 1139/bin/Debug/Arr6_1139.exe.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
</configuration>
Binary file added 1139/bin/Debug/Arr6_1139.pdb
Binary file not shown.
1 change: 1 addition & 0 deletions 1139/obj/Debug/Arr6_1139.csproj.CoreCompileInputs.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
59f40ad7147de23f25167307d4b584d98887a135
7 changes: 7 additions & 0 deletions 1139/obj/Debug/Arr6_1139.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
C:\Users\molch\Desktop\синх2019\С#\остальное\Arr6_1139\bin\Debug\Arr6_1139.exe.config
C:\Users\molch\Desktop\синх2019\С#\остальное\Arr6_1139\bin\Debug\Arr6_1139.exe
C:\Users\molch\Desktop\синх2019\С#\остальное\Arr6_1139\bin\Debug\Arr6_1139.pdb
C:\Users\molch\Desktop\синх2019\С#\остальное\Arr6_1139\obj\Debug\Arr6_1139.csprojAssemblyReference.cache
C:\Users\molch\Desktop\синх2019\С#\остальное\Arr6_1139\obj\Debug\Arr6_1139.csproj.CoreCompileInputs.cache
C:\Users\molch\Desktop\синх2019\С#\остальное\Arr6_1139\obj\Debug\Arr6_1139.exe
C:\Users\molch\Desktop\синх2019\С#\остальное\Arr6_1139\obj\Debug\Arr6_1139.pdb
Binary file not shown.
Binary file added 1139/obj/Debug/Arr6_1139.exe
Binary file not shown.
Binary file added 1139/obj/Debug/Arr6_1139.pdb
Binary file not shown.
Binary file not shown.
Binary file added 1296/.vs/col3_1296/v16/.suo
Binary file not shown.
Empty file.
Binary file not shown.
6 changes: 6 additions & 0 deletions 1296/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
</configuration>
34 changes: 34 additions & 0 deletions 1296/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
using System;

namespace col3_1296
{
class Program
{
static void Main()
{
var sumMax = 0;
var n = int.Parse(Console.ReadLine());
var arr = new int[n];
for (int i =0; i<n; i++)
{
arr[i] = int.Parse(Console.ReadLine());
}
if (arr.Length != 0)
{
var sum = arr[0];
for (int i = 1; i < arr.Length; i++)
{
if (sum > sumMax)
sumMax = sum;
if (sum + arr[i] > 0)
sum += arr[i];
else
sum = 0;
}
if (sum > sumMax)
sumMax = sum;
}
Console.WriteLine(sumMax);
}
}
}
36 changes: 36 additions & 0 deletions 1296/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("col3_1296")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("col3_1296")]
[assembly: AssemblyCopyright("Copyright © 2019")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("ab08a031-de40-43d2-830e-a56f6d317a0c")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
Binary file added 1296/bin/Debug/col3_1296.exe
Binary file not shown.
6 changes: 6 additions & 0 deletions 1296/bin/Debug/col3_1296.exe.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
</configuration>
Binary file added 1296/bin/Debug/col3_1296.pdb
Binary file not shown.
53 changes: 53 additions & 0 deletions 1296/col3_1296.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{AB08A031-DE40-43D2-830E-A56F6D317A0C}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>col3_1296</RootNamespace>
<AssemblyName>col3_1296</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
25 changes: 25 additions & 0 deletions 1296/col3_1296.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29306.81
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "col3_1296", "col3_1296.csproj", "{AB08A031-DE40-43D2-830E-A56F6D317A0C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{AB08A031-DE40-43D2-830E-A56F6D317A0C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AB08A031-DE40-43D2-830E-A56F6D317A0C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AB08A031-DE40-43D2-830E-A56F6D317A0C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AB08A031-DE40-43D2-830E-A56F6D317A0C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F1340404-B26C-4BA2-ABB3-8570269C175B}
EndGlobalSection
EndGlobal
Binary file not shown.
1 change: 1 addition & 0 deletions 1296/obj/Debug/col3_1296.csproj.CoreCompileInputs.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
59f40ad7147de23f25167307d4b584d98887a135
7 changes: 7 additions & 0 deletions 1296/obj/Debug/col3_1296.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
C:\Users\molch\Desktop\синх2019\С#\остальное\col3_1296\bin\Debug\col3_1296.exe.config
C:\Users\molch\Desktop\синх2019\С#\остальное\col3_1296\bin\Debug\col3_1296.exe
C:\Users\molch\Desktop\синх2019\С#\остальное\col3_1296\bin\Debug\col3_1296.pdb
C:\Users\molch\Desktop\синх2019\С#\остальное\col3_1296\obj\Debug\col3_1296.csprojAssemblyReference.cache
C:\Users\molch\Desktop\синх2019\С#\остальное\col3_1296\obj\Debug\col3_1296.csproj.CoreCompileInputs.cache
C:\Users\molch\Desktop\синх2019\С#\остальное\col3_1296\obj\Debug\col3_1296.exe
C:\Users\molch\Desktop\синх2019\С#\остальное\col3_1296\obj\Debug\col3_1296.pdb
Binary file not shown.
Binary file added 1296/obj/Debug/col3_1296.exe
Binary file not shown.
Binary file added 1296/obj/Debug/col3_1296.pdb
Binary file not shown.
Binary file added 1330/.vs/Col1_1330/v16/.suo
Binary file not shown.
Empty file.
Binary file not shown.
6 changes: 6 additions & 0 deletions 1330/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
</configuration>
Loading

0 comments on commit 3d56db3

Please sign in to comment.