結果

問題 No.544 Delete 7
コンテスト
ユーザー くれちー
提出日時 2016-12-23 01:04:16
言語 C90
(gcc 15.2.0)
コンパイル:
gcc-15 -O2 -std=c90 -DONLINE_JUDGE -o a.out _filename_ -lm
実行:
./a.out
結果
WA  
実行時間 -
コード長 462 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 228 ms
コンパイル使用メモリ 39,976 KB
最終ジャッジ日時 2026-02-23 23:57:15
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 44 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <stdio.h>
#include <stdlib.h>

int getrand(int min, int max) {
    return min + (int)(rand() * (max - min + 1.0) / (1.0 + RAND_MAX));
}

int contain7(int n) {
	while (n != 0) {
		if (n % 10 == 7 || n % 10 == -7) return 1;
		n = (n - n % 10) / 10;
	}
	return 0;
}

int main() {
	int n;
	scanf("%d", &n);

	int a, b;
	while (1) {
		a = getrand(-1e9, 1e9);
		b = n - a;
		if (!contain7(a) && !contain7(b)) break;
	}
	
	printf("%d %d\n", a, b);
	return 0;
}
0