結果
問題 | No.687 E869120 and Constructing Array 1 |
ユーザー |
![]() |
提出日時 | 2025-03-17 10:33:29 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 99 bytes |
コンパイル時間 | 454 ms |
コンパイル使用メモリ | 24,064 KB |
実行使用メモリ | 7,324 KB |
最終ジャッジ日時 | 2025-03-17 10:33:31 |
合計ジャッジ時間 | 1,677 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | AC * 5 WA * 1 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:4:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 4 | scanf("%d",&num); | ^~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>int main(void){int num = 0;scanf("%d",&num);printf("%d %d",num - 1,1);}