結果
問題 | No.508 超ゆとり教育 |
ユーザー | ngtkana |
提出日時 | 2020-03-01 00:08:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 598 bytes |
コンパイル時間 | 1,458 ms |
コンパイル使用メモリ | 167,264 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-13 20:23:05 |
合計ジャッジ時間 | 3,307 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
ソースコード
#include<bits/stdc++.h> int main(){ long long n;std::cin>>n; long long m=3*n; long long mod=1'000'000; long long a=n/mod*m/mod; long long b=n/mod*m%mod+n%mod*m/mod; long long c=n%mod+m%mod; b+=c/mod; c%=mod; a+=b/mod; b%=mod; std::cout<<a<<std::endl; std::cout<<b<<std::endl; std::cout<<c<<std::endl; if(a)std::cout<<a <<std::setfill('0')<<std::setw(6)<<b <<std::setfill('0')<<std::setw(6)<<c<<std::endl; else if(a)std::cout<<b <<std::setfill('0')<<std::setw(6)<<c<<std::endl; else std::cout<<c<<std::endl; }