結果
| 問題 | No.1136 Four Points Tour |
| ユーザー |
|
| 提出日時 | 2021-01-08 12:45:45 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 75 bytes |
| 記録 | |
| コンパイル時間 | 526 ms |
| コンパイル使用メモリ | 20,568 KB |
| 実行使用メモリ | 21,760 KB |
| 最終ジャッジ日時 | 2026-05-10 14:55:07 |
| 合計ジャッジ時間 | 5,208 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 7 TLE * 1 -- * 33 |
ソースコード
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)