結果
問題 | No.423 ハムスター語初級(数詞) |
ユーザー | くれちー |
提出日時 | 2016-09-24 16:20:56 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 174 bytes |
コンパイル時間 | 300 ms |
コンパイル使用メモリ | 20,352 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-18 08:36:41 |
合計ジャッジ時間 | 597 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 9 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:7:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | scanf("%s", n); | ^~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <string.h> int main() { char n[51]; scanf("%s", n); if (strcmp(n, "ham") != 0) printf("%sham\n", n); else printf("%s\n", n); return 0; }