結果
| 問題 | No.1232 2^x = x |
| コンテスト | |
| ユーザー |
semisagi
|
| 提出日時 | 2020-09-18 21:39:44 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,008 bytes |
| 記録 | |
| コンパイル時間 | 1,988 ms |
| コンパイル使用メモリ | 111,208 KB |
| 実行使用メモリ | 25,880 KB |
| 最終ジャッジ日時 | 2024-06-22 09:10:54 |
| 合計ジャッジ時間 | 2,735 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 3 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp3 {
class Program {
static void Main(string[] args) {
var scanner = new Scanner();
int N = scanner.NextInt();
for (int _ = 0; _ < N; _++) {
long P = scanner.NextLong();
Console.WriteLine((P - 1) * (P - 1));
}
}
}
class Scanner {
int index = 0;
string[] tokens = { };
public string Next() {
if (index == tokens.Length) {
index = 0;
tokens = Console.ReadLine().Split(' ');
}
return tokens[index++];
}
public int NextInt() {
return int.Parse(Next());
}
public long NextLong() {
return long.Parse(Next());
}
public double NextDouble() {
return double.Parse(Next());
}
}
}
semisagi