結果
問題 | No.299 蟻本が読めない |
ユーザー | chankou0920 |
提出日時 | 2017-10-27 14:10:39 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 24 ms / 1,000 ms |
コード長 | 304 bytes |
コンパイル時間 | 872 ms |
コンパイル使用メモリ | 106,324 KB |
実行使用メモリ | 23,640 KB |
最終ジャッジ日時 | 2024-11-21 20:49:06 |
合計ジャッジ時間 | 1,381 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
23,516 KB |
testcase_01 | AC | 23 ms
23,640 KB |
testcase_02 | AC | 24 ms
23,640 KB |
testcase_03 | AC | 23 ms
23,392 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; public class Program { public void Solve() { const int diff = 52; long page = 316; long N = long.Parse(Console.ReadLine()); page += (N - 1) * diff; Console.WriteLine(page); } public static void Main(string[] args) { Program program = new Program(); program.Solve(); } }