This repository has been archived by the owner on Oct 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from ani37/ani37-patch-3
Update and rename format for coding to format for codjam
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#include <bits/stdc++.h> | ||
#include <cstdio> | ||
#include <cstring> | ||
#include <cmath> | ||
#include <cstring> | ||
#include <chrono> | ||
#include <complex> | ||
#define endl "\n" | ||
#define ll long long int | ||
#define vi vector<int> | ||
#define vll vector<ll> | ||
#define vvi vector < vi > | ||
#define pii pair<int,int> | ||
#define pll pair<long long, long long> | ||
#define mod 1000000007 | ||
#define inf 1000000000000000001; | ||
#define all(c) c.begin(),c.end() | ||
#define mp(x,y) make_pair(x,y) | ||
#define mem(a,val) memset(a,val,sizeof(a)) | ||
#define eb emplace_back | ||
#define f first | ||
#define s second | ||
|
||
using namespace std; | ||
int main() | ||
{ | ||
ifstream fin; | ||
ofstream fout; | ||
fin.open("input"); | ||
fout.open("output"); | ||
|
||
int T; | ||
fin>>T; | ||
for(int t=1;t<=T;t++) | ||
{ | ||
ll ans=0; | ||
|
||
cout<<"Case #"<<t<<": "<<ans<<endl; | ||
} | ||
|
||
return 0; | ||
} |