結果

問題 No.552 十分簡単な星1の問題
ユーザー Maeda
提出日時 2025-03-07 15:54:17
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 223 bytes
コンパイル時間 545 ms
コンパイル使用メモリ 24,192 KB
実行使用メモリ 8,612 KB
最終ジャッジ日時 2025-03-07 15:54:20
合計ジャッジ時間 2,329 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 47
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

void main(void){
	long long int num = 0;
	int input = scanf("%lld",&num);
	if(input == 2){
		printf("入力ミス\n");
	}else{
		printf("入力された数字:%lld\n",num);
	}
	printf("%lld",num*10);
}
0