結果
問題 | No.1136 Four Points Tour |
ユーザー | matrie |
提出日時 | 2021-01-08 12:45:45 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 75 bytes |
コンパイル時間 | 278 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 21,888 KB |
最終ジャッジ日時 | 2024-11-15 17:26:30 |
合計ジャッジ時間 | 76,935 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
15,872 KB |
testcase_01 | AC | 30 ms
21,376 KB |
testcase_02 | AC | 31 ms
15,872 KB |
testcase_03 | AC | 31 ms
21,504 KB |
testcase_04 | AC | 31 ms
15,872 KB |
testcase_05 | AC | 31 ms
21,632 KB |
testcase_06 | AC | 30 ms
16,000 KB |
testcase_07 | TLE | - |
testcase_08 | AC | 31 ms
15,872 KB |
testcase_09 | AC | 31 ms
21,504 KB |
testcase_10 | TLE | - |
testcase_11 | AC | 38 ms
21,632 KB |
testcase_12 | AC | 621 ms
16,256 KB |
testcase_13 | AC | 30 ms
21,504 KB |
testcase_14 | AC | 498 ms
16,000 KB |
testcase_15 | AC | 37 ms
21,504 KB |
testcase_16 | AC | 598 ms
16,000 KB |
testcase_17 | AC | 839 ms
21,888 KB |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 153 ms
16,000 KB |
testcase_21 | TLE | - |
01_Sample03_evil.txt | TLE | - |
04_Rnd_large_evil1.txt | TLE | - |
04_Rnd_large_evil2.txt | TLE | - |
04_Rnd_large_evil3.txt | TLE | - |
04_Rnd_large_evil4.txt | TLE | - |
04_Rnd_large_evil5.txt | TLE | - |
04_Rnd_large_evil6.txt | TLE | - |
04_Rnd_large_evil7.txt | TLE | - |
04_Rnd_large_evil8.txt | TLE | - |
04_Rnd_large_evil9.txt | TLE | - |
04_Rnd_large_evil10.txt | TLE | - |
05_Rnd_huge_evil1.txt | TLE | - |
05_Rnd_huge_evil2.txt | TLE | - |
05_Rnd_huge_evil3.txt | TLE | - |
05_Rnd_huge_evil4.txt | TLE | - |
05_Rnd_huge_evil5.txt | TLE | - |
05_Rnd_huge_evil6.txt | TLE | - |
05_Rnd_huge_evil7.txt | TLE | - |
99_evil_01.txt | TLE | - |
ソースコード
n=int(input()) m=10**9+7 a,b=1,0 for i in range(n):a,b=b,a*3+b*2 print(a%m)