結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | Q43qBmBGuo2VB0s |
提出日時 | 2018-08-19 22:49:43 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 190 bytes |
コンパイル時間 | 248 ms |
コンパイル使用メモリ | 27,392 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-01 15:15:49 |
合計ジャッジ時間 | 610 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
#include "stdio.h" void main (void){ int i; char str1[100]; char str2[100]="yukicoder"; scanf("%s",str1); if(*str1 == *str2){ printf("Hello World!\n"); } }