結果
問題 | No.543 命題 |
ユーザー |
![]() |
提出日時 | 2017-07-15 20:27:20 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 117 bytes |
コンパイル時間 | 654 ms |
コンパイル使用メモリ | 19,328 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-08 02:39:39 |
合計ジャッジ時間 | 627 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 |
コンパイルメッセージ
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("%c%*c%c",&a,&b); | ^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> int main(){ char a,b; scanf("%c%*c%c",&a,&b); printf("%c %c\n",b,a); return 0; }