結果
| 問題 | No.457 (^^*) |
| コンテスト | |
| ユーザー |
ytft
|
| 提出日時 | 2021-04-02 14:43:43 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 215 bytes |
| 記録 | |
| コンパイル時間 | 986 ms |
| コンパイル使用メモリ | 179,812 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-29 10:36:52 |
| 合計ジャッジ時間 | 6,914 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 10 TLE * 1 -- * 9 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
string S;
cin>>S;
int N=S.size();
for(int i=0;i<N;i++){
for(int j=i+1;j<N;j++){
cout<<S[i]<<S[j]<<endl;
}
}
}
ytft