結果
問題 | No.1136 Four Points Tour |
ユーザー | SSRS |
提出日時 | 2020-11-10 07:36:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 503 bytes |
コンパイル時間 | 411 ms |
コンパイル使用メモリ | 62,352 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-22 17:11:29 |
合計ジャッジ時間 | 6,046 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
01_Sample03_evil.txt | RE | - |
04_Rnd_large_evil1.txt | RE | - |
04_Rnd_large_evil2.txt | RE | - |
04_Rnd_large_evil3.txt | RE | - |
04_Rnd_large_evil4.txt | RE | - |
04_Rnd_large_evil5.txt | RE | - |
04_Rnd_large_evil6.txt | RE | - |
04_Rnd_large_evil7.txt | RE | - |
04_Rnd_large_evil8.txt | RE | - |
04_Rnd_large_evil9.txt | RE | - |
04_Rnd_large_evil10.txt | RE | - |
05_Rnd_huge_evil1.txt | RE | - |
05_Rnd_huge_evil2.txt | RE | - |
05_Rnd_huge_evil3.txt | RE | - |
05_Rnd_huge_evil4.txt | RE | - |
05_Rnd_huge_evil5.txt | RE | - |
05_Rnd_huge_evil6.txt | RE | - |
05_Rnd_huge_evil7.txt | RE | - |
99_evil_01.txt | RE | - |
コンパイルメッセージ
main.cpp: In function 'long long int modpow(long long int, long long int)': main.cpp:15:1: warning: no return statement in function returning non-void [-Wreturn-type] 15 | } | ^
ソースコード
#include <iostream> using namespace std; const long long MOD = 1000000007; long long modpow(long long a, long long b){ long long ans = 1; while (b > 0){ if (b % 2 == 1){ ans *= a; ans %= MOD; } a *= a; a %= MOD; b /= 2; } } long long modinv(long long x){ return modpow(x, MOD - 2); } int main(){ long long N; cin >> N; long long ans = modpow(3, N); if (N % 2 == 0){ ans += 3; } else { ans += MOD - 3; } ans %= MOD; ans *= modinv(4); ans %= MOD; cout << ans << endl; }