結果
| 問題 | No.327 アルファベット列 |
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2026-03-27 18:57:24 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 230 bytes |
| 記録 | |
| コンパイル時間 | 318 ms |
| コンパイル使用メモリ | 71,384 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2026-03-27 18:57:26 |
| 合計ジャッジ時間 | 1,469 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | WA * 50 |
ソースコード
#include<iostream>
#include<cstdio>
using namespace std;
int n, m;
char a[55];
int main(){
scanf("%d", &n);
while(n)
{
a[m++] = n % 26 + 'A';
n /= 26;
}
for(int i = 0; i < m; i++)
{
cout << a[i];
}
return 0;
}
vjudge1