結果

問題 No.299 蟻本が読めない
ユーザー yamaken1343yamaken1343
提出日時 2015-11-13 22:27:31
言語 C90
(gcc 12.3.0)
結果
AC  
実行時間 0 ms / 1,000 ms
コード長 122 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 19,840 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 14:39:10
合計ジャッジ時間 471 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます
コンパイルメッセージ
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("%lld",&n);
      |         ^~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
int main(void){
	long long int ans,n;
	scanf("%lld",&n);
	ans = 316 + 52*(n-1);
	printf("%lld\n",ans);
}
0