結果
| 問題 |
No.544 Delete 7
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-07-14 23:10:10 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 700 bytes |
| コンパイル時間 | 2,042 ms |
| コンパイル使用メモリ | 158,696 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-29 23:43:45 |
| 合計ジャッジ時間 | 3,600 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 47 WA * 1 |
コンパイルメッセージ
main.cpp: In function ‘int nextInt()’:
main.cpp:9:29: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
9 | int nextInt() { int x; scanf("%d", &x); return x;}
| ~~~~~^~~~~~~~~~
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define REP(i,n) for(int i=0,_n=(int)(n);i<_n;++i)
template<class T>bool chmin(T&a,const T&b){return a>b?(a=b,true):false;}
template<class T>bool chmax(T&a,const T&b){return a<b?(a=b,true):false;}
int nextInt() { int x; scanf("%d", &x); return x;}
int main2() {
int N = nextInt();
int A = 0;
int B = 0;
int k = 1;
while (N > 0) {
int d = N % 10;
int a = 1;
int b = d - 1;
while (a == 7 || b == 7) {
a++;
b--;
}
N /= 10;
A += a * k;
B += b * k;
k *= 10;
}
cout << A << " " << B << endl;
return 0;
}
int main() {
for (;!cin.eof();cin>>ws) main2();
return 0;
}