結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | pppp |
提出日時 | 2024-02-09 02:39:40 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 501 bytes |
コンパイル時間 | 1,597 ms |
コンパイル使用メモリ | 27,136 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-28 12:56:19 |
合計ジャッジ時間 | 2,080 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include <stdio.h> #include <string.h> int main() { char input[100]; // 入力を格納するための配列 fgets(input, sizeof(input), stdin); // 標準入力から文字列を取得 // 改行文字を除去する if (input[strlen(input) - 1] == '\n') input[strlen(input) - 1] = '\0'; // 入力が "yukicoder" であるかを確認し、それに応じて出力を行う if (strcmp(input, "yukicoder") == 0) { printf("Hallo\n"); } return 0; }