結果

問題 No.299 蟻本が読めない
ユーザー bal4ubal4u
提出日時 2019-04-14 14:14:35
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 181 bytes
コンパイル時間 687 ms
コンパイル使用メモリ 27,088 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-19 03:27:18
合計ジャッジ時間 1,336 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 1 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// yukicoder: No.299 蟻本が読めない
// 2019.4.14 bal4u

#include <stdio.h>

int main()
{
	long long n;
	scanf("%lld", &n);
	printf("%lld\n", 316 + (n - 1) * 52);
	return 0;
}
0