結果

問題 No.280 歯車の問題(1)
ユーザー FF256grhyFF256grhy
提出日時 2015-09-18 22:42:08
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 224 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 22,272 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 07:03:48
合計ジャッジ時間 2,197 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:5:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |         scanf("%d", &n);
      |         ~~~~~^~~~~~~~~~
main.cpp:7:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |                 scanf("%d", &z);
      |                 ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(void) {
	int n, z, z1, zn, i;
	scanf("%d", &n);
	for(i = 0; i < n; i++) {
		scanf("%d", &z);
		if(i == 0    ) { z1 = z; }
		if(i == n - 1) { zn = z; }
	}
	printf("%d/%d\n", zn, z1);
	return 0;
}
0