結果
問題 | No.9005 実行時間/使用メモリテスト(テスト用) |
ユーザー | kuuso1 |
提出日時 | 2016-03-18 03:03:13 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,541 bytes |
コンパイル時間 | 1,194 ms |
コンパイル使用メモリ | 117,116 KB |
実行使用メモリ | 40,844 KB |
最終ジャッジ日時 | 2024-10-01 09:03:23 |
合計ジャッジ時間 | 9,761 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Diagnostics; class TEST{ static void Main(){ Sol mySol =new Sol(); mySol.Solve(); } } class Sol{ public void Solve(){ long mod=(long)1e9+7; int H=(int)1e5+1; int W=(int)1e4; long m2=mod+mod; long m3=mod+m2; var L=new List<long>[H]; for(int i=0;i<H;i++)L[i]=new List<long>(); long a=(long)1e9+2; long b=(long)2e9%mod; Parallel.For(0,(long)H,i=>{ long x=(i*W)%mod; long f=(x*x+a*x+b)%mod; for(long j=0;j<W;j++){ if(f==0)L[i].Add(x); f+=2*x+1+a; f=f<mod?f:f<m2?f-=mod:f<m3?f-m2:f-m3; x++; } }); HashSet<long> Hs=new HashSet<long>(); for(int i=0;i<H;i++){ if(L[i].Count>0){ foreach(var x in L[i])Hs.Add(x%mod); } } Console.WriteLine(0); } public Sol(){ } static String rs(){return Console.ReadLine();} static int ri(){return int.Parse(Console.ReadLine());} static long rl(){return long.Parse(Console.ReadLine());} static double rd(){return double.Parse(Console.ReadLine());} static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);} static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));} static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));} static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));} }