結果
問題 |
No.311 z in FizzBuzzString
|
ユーザー |
|
提出日時 | 2016-04-12 21:14:04 |
言語 | C90 (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 133 bytes |
コンパイル時間 | 110 ms |
コンパイル使用メモリ | 19,712 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 21:38:09 |
合計ジャッジ時間 | 586 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 11 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:5:2: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%d",&N); | ^~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(){ int N; scanf("%d",&N); int ans = (N/15)*4 + (N/3)*2 + (N/5)*2; printf("%d¥n",N); return 0; }