結果
| 問題 | No.552 十分簡単な星1の問題 |
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-03-07 15:58:42 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 204 bytes |
| 記録 | |
| コンパイル時間 | 257 ms |
| コンパイル使用メモリ | 36,560 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2026-02-22 20:10:11 |
| 合計ジャッジ時間 | 1,716 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 47 |
コンパイルメッセージ
main.c: In function 'main':
main.c:9:12: warning: implicit declaration of function 'strcmp' [-Wimplicit-function-declaration]
9 | if(strcmp(num,"0") != 0){
| ^~~~~~
main.c:2:1: note: include '<string.h>' or provide a declaration of 'strcmp'
1 | #include <stdio.h>
+++ |+#include <string.h>
2 |
ソースコード
#include <stdio.h>
void main(void){
char num[100] = "a";
int input = scanf("%s",num);
if(input == 2){
printf("入力ミス\n");
}
if(strcmp(num,"0") != 0){
printf("%s",num);
}
printf("0\n");
}
Maeda