結果
問題 | No.9005 実行時間/使用メモリテスト(テスト用) |
ユーザー | Lepton_s |
提出日時 | 2018-02-21 13:33:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 415 ms / 3,000 ms |
コード長 | 698 bytes |
コンパイル時間 | 2,583 ms |
コンパイル使用メモリ | 71,908 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-15 07:48:57 |
合計ジャッジ時間 | 1,574 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 14 ms
6,944 KB |
testcase_04 | AC | 415 ms
6,940 KB |
ソースコード
#include <cstdio> #include <iostream> #include <vector> typedef long long ll; typedef unsigned long long ull; #define REP(i,a,b) for(ll (i)=a;(i)<(ll)(b);++(i)) #define rep(i,n) REP(i,0,n) using namespace std; const ull cycle_per_sec = 2800000000; ull begin_cycle; ull get_cycle(){ unsigned int low, high; __asm__ volatile ("rdtsc" : "=a" (low), "=d" (high)); return ((ull) low) | ((ull) high << 32); } double get_time(){ return (double) (get_cycle() - begin_cycle)/cycle_per_sec; } int rec(int x){ if(x<=0) return 0; else return rec(x-1)+rec(x-1); } int main(){ begin_cycle = get_cycle(); int n; cin>>n; rec(n*5+4); cout<<0<<endl; double t = get_time(); cerr<<t<<endl; return 0; }