Submission #6492293
Source Code Expand
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> pp;
typedef pair<ll,ll> pll;
void read(int& x){ scanf("%d",&x); }
void read(ll& x){ scanf("%lld",&x); }
void read(pp& x){ scanf("%d%d",&x.first, &x.second); }
void read(pll& x){ scanf("%lld%lld",&x.first, &x.second); }
template<typename T,typename... Args>
void read(T& a,Args&... b){ read(a); read(b...); }
void cppio(){ ios_base::sync_with_stdio(0); cin.tie(0); }
#define all(x) (x).begin(),(x).end()
#define pb push_back
#define eb emplace_back
#define x first
#define y second
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define rrep(i,n) for(int i = 1; i <= (n); ++i)
#define sz(x) (int)(x).size()
int main()
{
cppio();
ll S;
read(S);
ll x1 = 1e9;
ll y2 = (S + x1 - 1) / x1;
ll y1 = 1;
ll x2 = x1*y2 - S;
printf("0 0 %lld %lld %lld %lld\n", x1, y1, x2, y2);
return 0;
}
Submission Info
| Submission Time |
|
| Task |
A - Triangle |
| User |
Namnamseo |
| Language |
C++14 (GCC 5.4.1) |
| Score |
400 |
| Code Size |
916 Byte |
| Status |
AC |
| Exec Time |
1 ms |
| Memory |
256 KiB |
Compile Error
./Main.cpp: In function ‘void read(int&)’:
./Main.cpp:6:34: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
void read(int& x){ scanf("%d",&x); }
^
./Main.cpp: In function ‘void read(ll&)’:
./Main.cpp:7:35: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
void read(ll& x){ scanf("%lld",&x); }
^
./Main.cpp: In function ‘void read(pp&)’:
./Main.cpp:8:52: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
void read(pp& x){ scanf("%d%d",&x.first, &x.second); }
^
./Main.cpp: In function ‘void read(pll&)’:
./Main.cpp:9:57: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
void read(pll& x){...
Judge Result
| Set Name |
Sample |
All |
| Score / Max Score |
0 / 0 |
400 / 400 |
| Status |
|
|
| Set Name |
Test Cases |
| Sample |
sample-01.txt, sample-02.txt, sample-03.txt |
| All |
01-01.txt, 01-02.txt, 01-03.txt, 01-04.txt, 01-05.txt, 01-06.txt, 01-07.txt, 01-08.txt, 01-09.txt, 01-10.txt, 01-11.txt, 01-12.txt, 01-13.txt, sample-01.txt, sample-02.txt, sample-03.txt |
| Case Name |
Status |
Exec Time |
Memory |
| 01-01.txt |
AC |
1 ms |
256 KiB |
| 01-02.txt |
AC |
1 ms |
256 KiB |
| 01-03.txt |
AC |
1 ms |
256 KiB |
| 01-04.txt |
AC |
1 ms |
256 KiB |
| 01-05.txt |
AC |
1 ms |
256 KiB |
| 01-06.txt |
AC |
1 ms |
256 KiB |
| 01-07.txt |
AC |
1 ms |
256 KiB |
| 01-08.txt |
AC |
1 ms |
256 KiB |
| 01-09.txt |
AC |
1 ms |
256 KiB |
| 01-10.txt |
AC |
1 ms |
256 KiB |
| 01-11.txt |
AC |
1 ms |
256 KiB |
| 01-12.txt |
AC |
1 ms |
256 KiB |
| 01-13.txt |
AC |
1 ms |
256 KiB |
| sample-01.txt |
AC |
1 ms |
256 KiB |
| sample-02.txt |
AC |
1 ms |
256 KiB |
| sample-03.txt |
AC |
1 ms |
256 KiB |