結果
問題 |
No.552 十分簡単な星1の問題
|
ユーザー |
![]() |
提出日時 | 2017-08-12 16:53:07 |
言語 | C90 (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 153 bytes |
コンパイル時間 | 364 ms |
コンパイル使用メモリ | 20,096 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-13 04:54:11 |
合計ジャッジ時間 | 1,463 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 29 WA * 18 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:6:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | scanf("%llu",&n); | ^~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include<string.h> char x[]="yukicoder"; int main(void){ unsigned long long n; scanf("%llu",&n); printf("%llu\n",n*10); return 0; }