結果
問題 | No.591 (^o^)/ |
ユーザー | cnyanko |
提出日時 | 2017-11-26 22:45:40 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 253 bytes |
コンパイル時間 | 101 ms |
コンパイル使用メモリ | 27,392 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-05 13:53:58 |
合計ジャッジ時間 | 607 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
コンパイルメッセージ
main.c: In function 'main': main.c:10:9: warning: assignment to 'char' from 'char *' makes integer from pointer without a cast [-Wint-conversion] 10 | f[0]="("; | ^ main.c:14:9: warning: assignment to 'char' from 'char *' makes integer from pointer without a cast [-Wint-conversion] 14 | f[4]=")"; | ^ main.c:15:9: warning: assignment to 'char' from 'char *' makes integer from pointer without a cast [-Wint-conversion] 15 | f[5]="/"; | ^
ソースコード
#include<stdio.h> #include<string.h> int main(void){ char e,m,f[6]; scanf("%c",&e); scanf("%c",&m); f[0]="("; strcpy(&f[1],&e); strcpy(&f[2],&m); strcpy(&f[3],&e); f[4]=")"; f[5]="/"; puts(f); return 0; }